Is it possible to set a *constant* lowest CPU frequency under the modern PSTATE driver?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
4
down vote

favorite
1












The new pstate Intel driver pisses me off for good, because they have removed the good old powersave governor that allowed me to set the lowest available CPU frequency and run my numerical simulations for hours or days in a nicely silent, cold laptop. To make things worse, what they call now powersave is essentially the old governor ondemand, i.e. a mode in which the CPU frequency rams up with the load, and with it the damn fan noise:




Since these policies are implemented in the driver, they are not same as the
cpufreq scaling governors implementation, even if they have the same name in
the cpufreq sysfs (scaling_governors). For example the "performance" policy is
similar to cpufreq(TM) "performance" governor, but "powersave" is completely
different than the cpufreq "powersave" governor. The strategy here is similar
to cpufreq "ondemand", where the requested P-State is related to the system load.




(Extracted from https://www.kernel.org/doc/Documentation/cpu-freq/intel-pstate.txt)



Now, please, is there any other way to keep my CPU frequency at a minimum? It's really important for me. I just prefer to dump the laptop through the window if I eventually cannot set a constant, lowest CPU frequency. That is how I use my laptop and that is what I want a laptop for, and I have been trying to achieve this for several days already!



I'm trying this, and it doesn't work:



echo 42 | sudo dd of=/sys/devices/system/cpu/intel_pstate/max_pref_pct


to set the maximum speed at 42%, and it doesn't have any affect, the CPU keeps on going to 100% whenever I do something. What am I doing wrong? (should I restart some service or something?)



Is there any way to get this? Also, will a non-Intel CPU allow me to do that? I don't mind buying another laptop it that is going to solve the problem.







share|improve this question






















  • Have you played with /sys/devices/system/cpu/cpu*/cpufreq/scaling_*?
    – Patrick
    Feb 16 at 13:30










  • @Patrick I don't know, I have tried many things. I will have a look at it. If you know how to do this, please post it as an answer.
    – Mephisto
    Feb 16 at 13:37










  • cpupower frequency-set -u 800MHz should do (assuming 800MHz is the minimum speed of your cpu - so as to set the max the same as the min); to reset it just use the same command and replace 800MHz with whatever the maximum speed of your cpu is; for more information consult the manual for cpupower and cpupower frequency-set
    – don_crissti
    Feb 16 at 15:45











  • @don_crissti Are you sure you don't have intel_pstate=disable in grub? That's the only way I can do that, but then it is using the old acpi_cpufreq driver, which is not my question.
    – Mephisto
    Feb 16 at 17:30






  • 1




    Works OK with 4.15.3 and the older 4.14.13. If I have the time I'll try also the lts kernel. My cpu is a Sandy Bridge fwiw.
    – don_crissti
    Feb 16 at 18:07















up vote
4
down vote

favorite
1












The new pstate Intel driver pisses me off for good, because they have removed the good old powersave governor that allowed me to set the lowest available CPU frequency and run my numerical simulations for hours or days in a nicely silent, cold laptop. To make things worse, what they call now powersave is essentially the old governor ondemand, i.e. a mode in which the CPU frequency rams up with the load, and with it the damn fan noise:




Since these policies are implemented in the driver, they are not same as the
cpufreq scaling governors implementation, even if they have the same name in
the cpufreq sysfs (scaling_governors). For example the "performance" policy is
similar to cpufreq(TM) "performance" governor, but "powersave" is completely
different than the cpufreq "powersave" governor. The strategy here is similar
to cpufreq "ondemand", where the requested P-State is related to the system load.




(Extracted from https://www.kernel.org/doc/Documentation/cpu-freq/intel-pstate.txt)



Now, please, is there any other way to keep my CPU frequency at a minimum? It's really important for me. I just prefer to dump the laptop through the window if I eventually cannot set a constant, lowest CPU frequency. That is how I use my laptop and that is what I want a laptop for, and I have been trying to achieve this for several days already!



I'm trying this, and it doesn't work:



echo 42 | sudo dd of=/sys/devices/system/cpu/intel_pstate/max_pref_pct


to set the maximum speed at 42%, and it doesn't have any affect, the CPU keeps on going to 100% whenever I do something. What am I doing wrong? (should I restart some service or something?)



Is there any way to get this? Also, will a non-Intel CPU allow me to do that? I don't mind buying another laptop it that is going to solve the problem.







share|improve this question






















  • Have you played with /sys/devices/system/cpu/cpu*/cpufreq/scaling_*?
    – Patrick
    Feb 16 at 13:30










  • @Patrick I don't know, I have tried many things. I will have a look at it. If you know how to do this, please post it as an answer.
    – Mephisto
    Feb 16 at 13:37










  • cpupower frequency-set -u 800MHz should do (assuming 800MHz is the minimum speed of your cpu - so as to set the max the same as the min); to reset it just use the same command and replace 800MHz with whatever the maximum speed of your cpu is; for more information consult the manual for cpupower and cpupower frequency-set
    – don_crissti
    Feb 16 at 15:45











  • @don_crissti Are you sure you don't have intel_pstate=disable in grub? That's the only way I can do that, but then it is using the old acpi_cpufreq driver, which is not my question.
    – Mephisto
    Feb 16 at 17:30






  • 1




    Works OK with 4.15.3 and the older 4.14.13. If I have the time I'll try also the lts kernel. My cpu is a Sandy Bridge fwiw.
    – don_crissti
    Feb 16 at 18:07













up vote
4
down vote

favorite
1









up vote
4
down vote

favorite
1






1





The new pstate Intel driver pisses me off for good, because they have removed the good old powersave governor that allowed me to set the lowest available CPU frequency and run my numerical simulations for hours or days in a nicely silent, cold laptop. To make things worse, what they call now powersave is essentially the old governor ondemand, i.e. a mode in which the CPU frequency rams up with the load, and with it the damn fan noise:




Since these policies are implemented in the driver, they are not same as the
cpufreq scaling governors implementation, even if they have the same name in
the cpufreq sysfs (scaling_governors). For example the "performance" policy is
similar to cpufreq(TM) "performance" governor, but "powersave" is completely
different than the cpufreq "powersave" governor. The strategy here is similar
to cpufreq "ondemand", where the requested P-State is related to the system load.




(Extracted from https://www.kernel.org/doc/Documentation/cpu-freq/intel-pstate.txt)



Now, please, is there any other way to keep my CPU frequency at a minimum? It's really important for me. I just prefer to dump the laptop through the window if I eventually cannot set a constant, lowest CPU frequency. That is how I use my laptop and that is what I want a laptop for, and I have been trying to achieve this for several days already!



I'm trying this, and it doesn't work:



echo 42 | sudo dd of=/sys/devices/system/cpu/intel_pstate/max_pref_pct


to set the maximum speed at 42%, and it doesn't have any affect, the CPU keeps on going to 100% whenever I do something. What am I doing wrong? (should I restart some service or something?)



Is there any way to get this? Also, will a non-Intel CPU allow me to do that? I don't mind buying another laptop it that is going to solve the problem.







share|improve this question














The new pstate Intel driver pisses me off for good, because they have removed the good old powersave governor that allowed me to set the lowest available CPU frequency and run my numerical simulations for hours or days in a nicely silent, cold laptop. To make things worse, what they call now powersave is essentially the old governor ondemand, i.e. a mode in which the CPU frequency rams up with the load, and with it the damn fan noise:




Since these policies are implemented in the driver, they are not same as the
cpufreq scaling governors implementation, even if they have the same name in
the cpufreq sysfs (scaling_governors). For example the "performance" policy is
similar to cpufreq(TM) "performance" governor, but "powersave" is completely
different than the cpufreq "powersave" governor. The strategy here is similar
to cpufreq "ondemand", where the requested P-State is related to the system load.




(Extracted from https://www.kernel.org/doc/Documentation/cpu-freq/intel-pstate.txt)



Now, please, is there any other way to keep my CPU frequency at a minimum? It's really important for me. I just prefer to dump the laptop through the window if I eventually cannot set a constant, lowest CPU frequency. That is how I use my laptop and that is what I want a laptop for, and I have been trying to achieve this for several days already!



I'm trying this, and it doesn't work:



echo 42 | sudo dd of=/sys/devices/system/cpu/intel_pstate/max_pref_pct


to set the maximum speed at 42%, and it doesn't have any affect, the CPU keeps on going to 100% whenever I do something. What am I doing wrong? (should I restart some service or something?)



Is there any way to get this? Also, will a non-Intel CPU allow me to do that? I don't mind buying another laptop it that is going to solve the problem.









share|improve this question













share|improve this question




share|improve this question








edited Feb 17 at 1:01









cas

37.6k44392




37.6k44392










asked Feb 16 at 13:20









Mephisto

271112




271112











  • Have you played with /sys/devices/system/cpu/cpu*/cpufreq/scaling_*?
    – Patrick
    Feb 16 at 13:30










  • @Patrick I don't know, I have tried many things. I will have a look at it. If you know how to do this, please post it as an answer.
    – Mephisto
    Feb 16 at 13:37










  • cpupower frequency-set -u 800MHz should do (assuming 800MHz is the minimum speed of your cpu - so as to set the max the same as the min); to reset it just use the same command and replace 800MHz with whatever the maximum speed of your cpu is; for more information consult the manual for cpupower and cpupower frequency-set
    – don_crissti
    Feb 16 at 15:45











  • @don_crissti Are you sure you don't have intel_pstate=disable in grub? That's the only way I can do that, but then it is using the old acpi_cpufreq driver, which is not my question.
    – Mephisto
    Feb 16 at 17:30






  • 1




    Works OK with 4.15.3 and the older 4.14.13. If I have the time I'll try also the lts kernel. My cpu is a Sandy Bridge fwiw.
    – don_crissti
    Feb 16 at 18:07

















  • Have you played with /sys/devices/system/cpu/cpu*/cpufreq/scaling_*?
    – Patrick
    Feb 16 at 13:30










  • @Patrick I don't know, I have tried many things. I will have a look at it. If you know how to do this, please post it as an answer.
    – Mephisto
    Feb 16 at 13:37










  • cpupower frequency-set -u 800MHz should do (assuming 800MHz is the minimum speed of your cpu - so as to set the max the same as the min); to reset it just use the same command and replace 800MHz with whatever the maximum speed of your cpu is; for more information consult the manual for cpupower and cpupower frequency-set
    – don_crissti
    Feb 16 at 15:45











  • @don_crissti Are you sure you don't have intel_pstate=disable in grub? That's the only way I can do that, but then it is using the old acpi_cpufreq driver, which is not my question.
    – Mephisto
    Feb 16 at 17:30






  • 1




    Works OK with 4.15.3 and the older 4.14.13. If I have the time I'll try also the lts kernel. My cpu is a Sandy Bridge fwiw.
    – don_crissti
    Feb 16 at 18:07
















Have you played with /sys/devices/system/cpu/cpu*/cpufreq/scaling_*?
– Patrick
Feb 16 at 13:30




Have you played with /sys/devices/system/cpu/cpu*/cpufreq/scaling_*?
– Patrick
Feb 16 at 13:30












@Patrick I don't know, I have tried many things. I will have a look at it. If you know how to do this, please post it as an answer.
– Mephisto
Feb 16 at 13:37




@Patrick I don't know, I have tried many things. I will have a look at it. If you know how to do this, please post it as an answer.
– Mephisto
Feb 16 at 13:37












cpupower frequency-set -u 800MHz should do (assuming 800MHz is the minimum speed of your cpu - so as to set the max the same as the min); to reset it just use the same command and replace 800MHz with whatever the maximum speed of your cpu is; for more information consult the manual for cpupower and cpupower frequency-set
– don_crissti
Feb 16 at 15:45





cpupower frequency-set -u 800MHz should do (assuming 800MHz is the minimum speed of your cpu - so as to set the max the same as the min); to reset it just use the same command and replace 800MHz with whatever the maximum speed of your cpu is; for more information consult the manual for cpupower and cpupower frequency-set
– don_crissti
Feb 16 at 15:45













@don_crissti Are you sure you don't have intel_pstate=disable in grub? That's the only way I can do that, but then it is using the old acpi_cpufreq driver, which is not my question.
– Mephisto
Feb 16 at 17:30




@don_crissti Are you sure you don't have intel_pstate=disable in grub? That's the only way I can do that, but then it is using the old acpi_cpufreq driver, which is not my question.
– Mephisto
Feb 16 at 17:30




1




1




Works OK with 4.15.3 and the older 4.14.13. If I have the time I'll try also the lts kernel. My cpu is a Sandy Bridge fwiw.
– don_crissti
Feb 16 at 18:07





Works OK with 4.15.3 and the older 4.14.13. If I have the time I'll try also the lts kernel. My cpu is a Sandy Bridge fwiw.
– don_crissti
Feb 16 at 18:07











2 Answers
2






active

oldest

votes

















up vote
4
down vote













Well, well, turns out that the new pstate Intel driver is awesome, but first one needs to practice a bit of the ancient, lost art of reading the documentation.



I'll leave my question as it is because, judging by all the grief and frustration I see scattered all around the internet, I am not the first to have this issues.



The new CPU driver has lots of options, but I will restrict my explanation to something simple and, for me, more than enough and satisfactory. First of all:



sudo apt-get install linux-cpupower


(or the equivalent in your non-debian based distros)



There are now 2 behaviors (governors) with the names powersave and performance but that is quite an unfortunate naming scheme, because these governors have nothing to do with those that bear the same names in the old driver:



  • powersave means now variable frequency that depends on the load, i.e. this is essentially the old ondemand governor. You get to set the minimum and maximum frequency, and if that maximum frequency is set to the maximum frequency your CPU is able of (which I believe it's the default) then you don't save a crap. You may even crank up the minimum frequency to the second highest value, and the result will be the CPU nearly at full throttle 24/7 and the governor will still be named powersave. They should have named this governor VARIABLE or something similar, avoiding a lot of confusion among users and sparing the developers a lot of false reports of kernel bugs.


  • performance means here constant frequency, no matter the load, and this depends on what the user has set as maximum. When this governor is set, the mininum frequency is ignored and the CPU runs at the frequency you set as maximum. If as such you have set a very low frequency, then you will not see any special performance or anything, you just will get a slowed down CPU at constant frequency. So they'd better named this governor CONSTANT or something similar, sparing frustration to many people like me, used to the old scheme.


So, here are some examples that work like a charm, at least with kernel 4.14. I will use as minimum and maximum frequency the values for my CPU: 0.4 and 3.1 GHz. See yours with cpupower frequency-info



CONSTANT, LOWEST FREQUENCY IN ALL CORES



This IS what I wanted! We get that by setting the constant frequency governor and setting the lowest available frequency as the maximum:



sudo cpupower frequency-set -g performance
sudo cpupower frequency-set -u 400MHz


CONSTANT, HIGHEST FREQUENCY IN ALL CORES



(You see this asked very often for desktop computers where it makes sense, although there are also people out there willing to destroy their laptop fan)



sudo cpupower frequency-set -g performance
sudo cpupower frequency-set -u 3100MHz


VARIABLE FREQUENCY BETWEEN THE MINIMUM AND MAXIMUM POSSIBLE FREQUENCIES IN ALL CORES



(this was called ondemand with the old acpi-cpufreq driver)



sudo cpupower frequency-set -g powersave
sudo cpupower frequency-set -d 400MHz
sudo cpupower frequency-set -u 3100MHz


VARIABLE FREQUENCY BETWEEN THE MINIMUM AND A MODERATE FREQUENCY IN ALL CORES



(maybe because you want to get some more speed when required but you don't want to reach the maximum and hear the fan blowing like mad)



sudo cpupower frequency-set -g powersave
sudo cpupower frequency-set -d 400MHz
sudo cpupower frequency-set -u 1200MHz


And so on. It is very easy and works really well. You can set too a constant low frequency in one core where the heavy numerical stuff is running, while you leave a variable frequency in other core where you launch the more usual stuff (email, web browsing...). See taskset for more info.






share|improve this answer





























    up vote
    0
    down vote













    It work on me by:



    echo "50" | sudo tee /sys/devices/system/cpu/intel_pstate/max_pref_pct


    it run only 50% performance/speed while CPU load is 100%






    share|improve this answer






















      Your Answer







      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "106"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      convertImagesToLinks: false,
      noModals: false,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );








       

      draft saved


      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424602%2fis-it-possible-to-set-a-constant-lowest-cpu-frequency-under-the-modern-pstate%23new-answer', 'question_page');

      );

      Post as a guest






























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      4
      down vote













      Well, well, turns out that the new pstate Intel driver is awesome, but first one needs to practice a bit of the ancient, lost art of reading the documentation.



      I'll leave my question as it is because, judging by all the grief and frustration I see scattered all around the internet, I am not the first to have this issues.



      The new CPU driver has lots of options, but I will restrict my explanation to something simple and, for me, more than enough and satisfactory. First of all:



      sudo apt-get install linux-cpupower


      (or the equivalent in your non-debian based distros)



      There are now 2 behaviors (governors) with the names powersave and performance but that is quite an unfortunate naming scheme, because these governors have nothing to do with those that bear the same names in the old driver:



      • powersave means now variable frequency that depends on the load, i.e. this is essentially the old ondemand governor. You get to set the minimum and maximum frequency, and if that maximum frequency is set to the maximum frequency your CPU is able of (which I believe it's the default) then you don't save a crap. You may even crank up the minimum frequency to the second highest value, and the result will be the CPU nearly at full throttle 24/7 and the governor will still be named powersave. They should have named this governor VARIABLE or something similar, avoiding a lot of confusion among users and sparing the developers a lot of false reports of kernel bugs.


      • performance means here constant frequency, no matter the load, and this depends on what the user has set as maximum. When this governor is set, the mininum frequency is ignored and the CPU runs at the frequency you set as maximum. If as such you have set a very low frequency, then you will not see any special performance or anything, you just will get a slowed down CPU at constant frequency. So they'd better named this governor CONSTANT or something similar, sparing frustration to many people like me, used to the old scheme.


      So, here are some examples that work like a charm, at least with kernel 4.14. I will use as minimum and maximum frequency the values for my CPU: 0.4 and 3.1 GHz. See yours with cpupower frequency-info



      CONSTANT, LOWEST FREQUENCY IN ALL CORES



      This IS what I wanted! We get that by setting the constant frequency governor and setting the lowest available frequency as the maximum:



      sudo cpupower frequency-set -g performance
      sudo cpupower frequency-set -u 400MHz


      CONSTANT, HIGHEST FREQUENCY IN ALL CORES



      (You see this asked very often for desktop computers where it makes sense, although there are also people out there willing to destroy their laptop fan)



      sudo cpupower frequency-set -g performance
      sudo cpupower frequency-set -u 3100MHz


      VARIABLE FREQUENCY BETWEEN THE MINIMUM AND MAXIMUM POSSIBLE FREQUENCIES IN ALL CORES



      (this was called ondemand with the old acpi-cpufreq driver)



      sudo cpupower frequency-set -g powersave
      sudo cpupower frequency-set -d 400MHz
      sudo cpupower frequency-set -u 3100MHz


      VARIABLE FREQUENCY BETWEEN THE MINIMUM AND A MODERATE FREQUENCY IN ALL CORES



      (maybe because you want to get some more speed when required but you don't want to reach the maximum and hear the fan blowing like mad)



      sudo cpupower frequency-set -g powersave
      sudo cpupower frequency-set -d 400MHz
      sudo cpupower frequency-set -u 1200MHz


      And so on. It is very easy and works really well. You can set too a constant low frequency in one core where the heavy numerical stuff is running, while you leave a variable frequency in other core where you launch the more usual stuff (email, web browsing...). See taskset for more info.






      share|improve this answer


























        up vote
        4
        down vote













        Well, well, turns out that the new pstate Intel driver is awesome, but first one needs to practice a bit of the ancient, lost art of reading the documentation.



        I'll leave my question as it is because, judging by all the grief and frustration I see scattered all around the internet, I am not the first to have this issues.



        The new CPU driver has lots of options, but I will restrict my explanation to something simple and, for me, more than enough and satisfactory. First of all:



        sudo apt-get install linux-cpupower


        (or the equivalent in your non-debian based distros)



        There are now 2 behaviors (governors) with the names powersave and performance but that is quite an unfortunate naming scheme, because these governors have nothing to do with those that bear the same names in the old driver:



        • powersave means now variable frequency that depends on the load, i.e. this is essentially the old ondemand governor. You get to set the minimum and maximum frequency, and if that maximum frequency is set to the maximum frequency your CPU is able of (which I believe it's the default) then you don't save a crap. You may even crank up the minimum frequency to the second highest value, and the result will be the CPU nearly at full throttle 24/7 and the governor will still be named powersave. They should have named this governor VARIABLE or something similar, avoiding a lot of confusion among users and sparing the developers a lot of false reports of kernel bugs.


        • performance means here constant frequency, no matter the load, and this depends on what the user has set as maximum. When this governor is set, the mininum frequency is ignored and the CPU runs at the frequency you set as maximum. If as such you have set a very low frequency, then you will not see any special performance or anything, you just will get a slowed down CPU at constant frequency. So they'd better named this governor CONSTANT or something similar, sparing frustration to many people like me, used to the old scheme.


        So, here are some examples that work like a charm, at least with kernel 4.14. I will use as minimum and maximum frequency the values for my CPU: 0.4 and 3.1 GHz. See yours with cpupower frequency-info



        CONSTANT, LOWEST FREQUENCY IN ALL CORES



        This IS what I wanted! We get that by setting the constant frequency governor and setting the lowest available frequency as the maximum:



        sudo cpupower frequency-set -g performance
        sudo cpupower frequency-set -u 400MHz


        CONSTANT, HIGHEST FREQUENCY IN ALL CORES



        (You see this asked very often for desktop computers where it makes sense, although there are also people out there willing to destroy their laptop fan)



        sudo cpupower frequency-set -g performance
        sudo cpupower frequency-set -u 3100MHz


        VARIABLE FREQUENCY BETWEEN THE MINIMUM AND MAXIMUM POSSIBLE FREQUENCIES IN ALL CORES



        (this was called ondemand with the old acpi-cpufreq driver)



        sudo cpupower frequency-set -g powersave
        sudo cpupower frequency-set -d 400MHz
        sudo cpupower frequency-set -u 3100MHz


        VARIABLE FREQUENCY BETWEEN THE MINIMUM AND A MODERATE FREQUENCY IN ALL CORES



        (maybe because you want to get some more speed when required but you don't want to reach the maximum and hear the fan blowing like mad)



        sudo cpupower frequency-set -g powersave
        sudo cpupower frequency-set -d 400MHz
        sudo cpupower frequency-set -u 1200MHz


        And so on. It is very easy and works really well. You can set too a constant low frequency in one core where the heavy numerical stuff is running, while you leave a variable frequency in other core where you launch the more usual stuff (email, web browsing...). See taskset for more info.






        share|improve this answer
























          up vote
          4
          down vote










          up vote
          4
          down vote









          Well, well, turns out that the new pstate Intel driver is awesome, but first one needs to practice a bit of the ancient, lost art of reading the documentation.



          I'll leave my question as it is because, judging by all the grief and frustration I see scattered all around the internet, I am not the first to have this issues.



          The new CPU driver has lots of options, but I will restrict my explanation to something simple and, for me, more than enough and satisfactory. First of all:



          sudo apt-get install linux-cpupower


          (or the equivalent in your non-debian based distros)



          There are now 2 behaviors (governors) with the names powersave and performance but that is quite an unfortunate naming scheme, because these governors have nothing to do with those that bear the same names in the old driver:



          • powersave means now variable frequency that depends on the load, i.e. this is essentially the old ondemand governor. You get to set the minimum and maximum frequency, and if that maximum frequency is set to the maximum frequency your CPU is able of (which I believe it's the default) then you don't save a crap. You may even crank up the minimum frequency to the second highest value, and the result will be the CPU nearly at full throttle 24/7 and the governor will still be named powersave. They should have named this governor VARIABLE or something similar, avoiding a lot of confusion among users and sparing the developers a lot of false reports of kernel bugs.


          • performance means here constant frequency, no matter the load, and this depends on what the user has set as maximum. When this governor is set, the mininum frequency is ignored and the CPU runs at the frequency you set as maximum. If as such you have set a very low frequency, then you will not see any special performance or anything, you just will get a slowed down CPU at constant frequency. So they'd better named this governor CONSTANT or something similar, sparing frustration to many people like me, used to the old scheme.


          So, here are some examples that work like a charm, at least with kernel 4.14. I will use as minimum and maximum frequency the values for my CPU: 0.4 and 3.1 GHz. See yours with cpupower frequency-info



          CONSTANT, LOWEST FREQUENCY IN ALL CORES



          This IS what I wanted! We get that by setting the constant frequency governor and setting the lowest available frequency as the maximum:



          sudo cpupower frequency-set -g performance
          sudo cpupower frequency-set -u 400MHz


          CONSTANT, HIGHEST FREQUENCY IN ALL CORES



          (You see this asked very often for desktop computers where it makes sense, although there are also people out there willing to destroy their laptop fan)



          sudo cpupower frequency-set -g performance
          sudo cpupower frequency-set -u 3100MHz


          VARIABLE FREQUENCY BETWEEN THE MINIMUM AND MAXIMUM POSSIBLE FREQUENCIES IN ALL CORES



          (this was called ondemand with the old acpi-cpufreq driver)



          sudo cpupower frequency-set -g powersave
          sudo cpupower frequency-set -d 400MHz
          sudo cpupower frequency-set -u 3100MHz


          VARIABLE FREQUENCY BETWEEN THE MINIMUM AND A MODERATE FREQUENCY IN ALL CORES



          (maybe because you want to get some more speed when required but you don't want to reach the maximum and hear the fan blowing like mad)



          sudo cpupower frequency-set -g powersave
          sudo cpupower frequency-set -d 400MHz
          sudo cpupower frequency-set -u 1200MHz


          And so on. It is very easy and works really well. You can set too a constant low frequency in one core where the heavy numerical stuff is running, while you leave a variable frequency in other core where you launch the more usual stuff (email, web browsing...). See taskset for more info.






          share|improve this answer














          Well, well, turns out that the new pstate Intel driver is awesome, but first one needs to practice a bit of the ancient, lost art of reading the documentation.



          I'll leave my question as it is because, judging by all the grief and frustration I see scattered all around the internet, I am not the first to have this issues.



          The new CPU driver has lots of options, but I will restrict my explanation to something simple and, for me, more than enough and satisfactory. First of all:



          sudo apt-get install linux-cpupower


          (or the equivalent in your non-debian based distros)



          There are now 2 behaviors (governors) with the names powersave and performance but that is quite an unfortunate naming scheme, because these governors have nothing to do with those that bear the same names in the old driver:



          • powersave means now variable frequency that depends on the load, i.e. this is essentially the old ondemand governor. You get to set the minimum and maximum frequency, and if that maximum frequency is set to the maximum frequency your CPU is able of (which I believe it's the default) then you don't save a crap. You may even crank up the minimum frequency to the second highest value, and the result will be the CPU nearly at full throttle 24/7 and the governor will still be named powersave. They should have named this governor VARIABLE or something similar, avoiding a lot of confusion among users and sparing the developers a lot of false reports of kernel bugs.


          • performance means here constant frequency, no matter the load, and this depends on what the user has set as maximum. When this governor is set, the mininum frequency is ignored and the CPU runs at the frequency you set as maximum. If as such you have set a very low frequency, then you will not see any special performance or anything, you just will get a slowed down CPU at constant frequency. So they'd better named this governor CONSTANT or something similar, sparing frustration to many people like me, used to the old scheme.


          So, here are some examples that work like a charm, at least with kernel 4.14. I will use as minimum and maximum frequency the values for my CPU: 0.4 and 3.1 GHz. See yours with cpupower frequency-info



          CONSTANT, LOWEST FREQUENCY IN ALL CORES



          This IS what I wanted! We get that by setting the constant frequency governor and setting the lowest available frequency as the maximum:



          sudo cpupower frequency-set -g performance
          sudo cpupower frequency-set -u 400MHz


          CONSTANT, HIGHEST FREQUENCY IN ALL CORES



          (You see this asked very often for desktop computers where it makes sense, although there are also people out there willing to destroy their laptop fan)



          sudo cpupower frequency-set -g performance
          sudo cpupower frequency-set -u 3100MHz


          VARIABLE FREQUENCY BETWEEN THE MINIMUM AND MAXIMUM POSSIBLE FREQUENCIES IN ALL CORES



          (this was called ondemand with the old acpi-cpufreq driver)



          sudo cpupower frequency-set -g powersave
          sudo cpupower frequency-set -d 400MHz
          sudo cpupower frequency-set -u 3100MHz


          VARIABLE FREQUENCY BETWEEN THE MINIMUM AND A MODERATE FREQUENCY IN ALL CORES



          (maybe because you want to get some more speed when required but you don't want to reach the maximum and hear the fan blowing like mad)



          sudo cpupower frequency-set -g powersave
          sudo cpupower frequency-set -d 400MHz
          sudo cpupower frequency-set -u 1200MHz


          And so on. It is very easy and works really well. You can set too a constant low frequency in one core where the heavy numerical stuff is running, while you leave a variable frequency in other core where you launch the more usual stuff (email, web browsing...). See taskset for more info.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Aug 23 at 18:15









          sourcejedi

          19k32478




          19k32478










          answered Feb 17 at 13:53









          Mephisto

          271112




          271112






















              up vote
              0
              down vote













              It work on me by:



              echo "50" | sudo tee /sys/devices/system/cpu/intel_pstate/max_pref_pct


              it run only 50% performance/speed while CPU load is 100%






              share|improve this answer


























                up vote
                0
                down vote













                It work on me by:



                echo "50" | sudo tee /sys/devices/system/cpu/intel_pstate/max_pref_pct


                it run only 50% performance/speed while CPU load is 100%






                share|improve this answer
























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  It work on me by:



                  echo "50" | sudo tee /sys/devices/system/cpu/intel_pstate/max_pref_pct


                  it run only 50% performance/speed while CPU load is 100%






                  share|improve this answer














                  It work on me by:



                  echo "50" | sudo tee /sys/devices/system/cpu/intel_pstate/max_pref_pct


                  it run only 50% performance/speed while CPU load is 100%







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Aug 1 at 20:27









                  Jesse_b

                  10.4k22658




                  10.4k22658










                  answered Aug 1 at 19:44









                  Taufik

                  11




                  11






















                       

                      draft saved


                      draft discarded


























                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424602%2fis-it-possible-to-set-a-constant-lowest-cpu-frequency-under-the-modern-pstate%23new-answer', 'question_page');

                      );

                      Post as a guest













































































                      Popular posts from this blog

                      How to check contact read email or not when send email to Individual?

                      Bahrain

                      Postfix configuration issue with fips on centos 7; mailgun relay