-
-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing temperature reports on Intel Alder Lake Processor cores #1048
Comments
The issue might be that sensors indexes by core id, and these have a strange mapping to processors. For some reason core id increments by 4, with two processors per core (hyperthreading). That's for P-cores. For E-cores there is one core id per processor. These match between sensors and cpuinfo. Should htop be tying sensor values to cpuinfo core id? Here is an abbreviated demonstration: $ sensors
Core 0: +39.0°C (high = +100.0°C, crit = +100.0°C)
Core 4: +41.0°C (high = +100.0°C, crit = +100.0°C)
Core 8: +42.0°C (high = +100.0°C, crit = +100.0°C)
... etc ...
$ grep 'core id' /proc/cpuinfo
core id : 0
core id : 0
core id : 4
core id : 4
core id : 8
core id : 8 |
leahneukirchen
added a commit
to leahneukirchen/htop
that referenced
this issue
Dec 25, 2023
Closes htop-dev#806. Closes htop-dev#1048. Closes htop-dev#1176. Closes htop-dev#1335. Addresses htop-dev#879 (on Linux).
leahneukirchen
added a commit
to leahneukirchen/htop
that referenced
this issue
Dec 25, 2023
Closes htop-dev#806. Closes htop-dev#1048. Closes htop-dev#1176. Closes htop-dev#1335. Addresses htop-dev#879 (on Linux).
leahneukirchen
added a commit
to leahneukirchen/htop
that referenced
this issue
Sep 1, 2024
Closes htop-dev#806. Closes htop-dev#1048. Closes htop-dev#1176. Closes htop-dev#1335. Addresses htop-dev#879 (on Linux).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a
Lenovo Yoga 9 14IAP7
with anIntel Core i5-1240P
.htop
only shows temperatures for the 0, 4, 8 & 12 cores.The temperatures
tempX
fromsensors -u coretemp-isa-0000
seem to correspond to thecpu id
rather than theprocessor
of a core in/proc/cpuinfo
.Is this a new quirk of Alder Lake chips (e.g. due tho the big-little design)?
The text was updated successfully, but these errors were encountered: