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
When I run auto-cpufreq --stats or use the GUI, it reports to me “Not setting EPP (not supported by system)”. I, of course, had no doubt that my system supported this feature, so I went to check the source code.
Apparently, in this line, it checks whether the file intel_pstate/hwp_dynamic_boost exists — and if it does, reports this error message. That happened to be the case, but just checking whether the file exists isn't enough to accurately determine if dynamic boosting is enabled. The code should, in fact, check the contents of the file (whether a 0 or a 1), and proceed from there.
$ auto-cpufreq --stats
Linux distro: Fedora Linux 39 Workstation Edition
Linux kernel: 6.6.10-cb1.0.fc39.x86_64
Processor: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
Cores: 8
Architecture: x86_64
Driver: intel_pstate
------------------------------ Current CPU stats ------------------------------
CPU max frequency: 2400 MHz
CPU min frequency: 400 MHz
Core Usage Temperature Frequency
CPU0 9.1% 44 °C 400 MHz
CPU1 3.1% 44 °C 2242 MHz
CPU2 5.0% 43 °C 400 MHz
CPU3 9.2% 51 °C 400 MHz
CPU4 4.0% 44 °C 400 MHz
CPU5 5.1% 44 °C 2175 MHz
CPU6 10.5% 43 °C 2114 MHz
CPU7 26.5% 51 °C 2320 MHz
---------------------------- CPU frequency scaling ----------------------------
Battery is: charging
Setting to use: "performance" governor
Not setting EPP (not supported by system) <---------------
Total CPU usage: 6.0 %
Total system load: 0.44
Average temp. of all cores: 45.50 °C
High CPU load (load average: 0.44, 0.49, 0.61)
setting turbo boost: on
The text was updated successfully, but these errors were encountered:
You're right, and in #619 I even mentioned seeing EPP just fine.
Since I'm very limited with available time to do this myself and project is looking for contributors if you or anyone else wants to give it a try in implementing this functionality, please give it a try and contribute to the project and you will be credited for your work as part of future release.
When I run
auto-cpufreq --stats
or use the GUI, it reports to me “Not setting EPP (not supported by system)”. I, of course, had no doubt that my system supported this feature, so I went to check the source code.Apparently, in this line, it checks whether the file
intel_pstate/hwp_dynamic_boost
exists — and if it does, reports this error message. That happened to be the case, but just checking whether the file exists isn't enough to accurately determine if dynamic boosting is enabled. The code should, in fact, check the contents of the file (whether a0
or a1
), and proceed from there.The text was updated successfully, but these errors were encountered: