-
-
Notifications
You must be signed in to change notification settings - Fork 658
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
framework 16 - CPU stuck below 1ghz under 100% load after sleep resume #1174
Comments
On other Intel hardware I have seen 600mhz as the minimal frequency. But this was often linked with some period of overheating. In any case this was only resolved by a reboot, which resets the power management. |
The CPU temperature doesn't go above 50c while this is happening |
Might be something else than. |
I am currently running into a similar issue with a different laptop model. Running on a i7-1370P which has 14 cores, 20 thread and a a frequency range from 400Mhz to 5.2Ghz. I am facing issues with the CPU frequency when trying to do heavy work (for instance, compiling a lib with cmake). In such scenario the frequency throttle down to 800Mhz:
(other method report similar frequencies) And the CPU is showing not sign of overheating (throttling even at 50ish degrees). I have set the latest available kernel from nixpkgs, using
Then I started tweaking governor settings: I made sure to use the following setting for powerManagement: powerManagement = {
enable = true;
cpuFreqGovernor = "performance";
}; and also tried the following variant for this kernel parameters which i found on other similar discourse posts:
Disable this options, as a post suggested it could be part of the problem: services.power-profiles-daemon.enable = false; I also tried settings services.auto-cpufreq.enable = true;
services.auto-cpufreq.settings = {
battery = {
governor = "powersave";
turbo = "never";
};
charger = {
governor = "performance";
turbo = "auto";
scaling_min_freq = 520000000;
};
}; So far I have not been able to fix my issue, although you may find your luck in the options i tried |
After sleeping and resuming, the performance of the laptop drops by a significant amount
The CPU clock cannot go over 1ghz when at 100% or near 100% CPU load
Power profile hasn't changed, switching to other profiles and back to performance doesn't change anything
The text was updated successfully, but these errors were encountered: