Who has an @amd #ThreadRipper 2950x and can #help out the #inxi developer to solve an issue? More details on the request in our forums: https://forum.manjaro.org/t/data-for-amd-threadripper-16-core-2950x-cpu-for-inxi/153762
#manjaro #linux
Original tweet: https://twitter.com/ManjaroLinux/status/1738097908703277094 22 Dec 2023 08:23 CET
Data for AMD Threadripper 16 core 2950x CPU for inxi
I’ve hit an issue but the person did not provide the required data. For the AMD 16 core threadripper 2950x which is I believe Zen+ generation (right before Zen2), there’s a problem with how the data is working, a 16 core 2950x, which had 2 cpu dies, is showing up as an 8 core with 2 cpu dies, which is wrong. I came up with a simple 1 liner that will crudely supply the data I need to debug this issue: for i in $(find /sys/devices/system/cpu/ -type f); do echo ${i}::$(cat $i 2>/dev/null);done | ...