You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the code uses cpufreq/cpuinfo_max_freq. The correct way to identify different core types is the cpu_capacity file (/sys/devices/system/cpu/cpu3/cpu_capacity). This should be 1024 for p-cores, though it's probably safer to keep the current logic of taking the max number as the p-cores.
The text was updated successfully, but these errors were encountered:
I think cpu_capacity should always be defined for a system with properly configured big.LITTLE, but I guess maybe some platforms aren't always doing that? It might make sense to keep the cpuinfo_max_freq fallback then, yeah ^^
Right now the code uses
cpufreq/cpuinfo_max_freq
. The correct way to identify different core types is thecpu_capacity
file (/sys/devices/system/cpu/cpu3/cpu_capacity
). This should be 1024 for p-cores, though it's probably safer to keep the current logic of taking the max number as the p-cores.The text was updated successfully, but these errors were encountered: