0

I currently run Ubuntu on my pc that has an AMD Ryzen 5 2400g. I tried to disable the CPU throttling and it seemed to have worked but I am not too sure if it has. (increased from 1600 to 2400 where my max cpu is 3600)

The method I used was from here: Set CPU governor to performance in 18.04

I was wondering if someone could tell me whether the difference in core matters in how much I can disable CPU throttling. How I should go about disabling it more effectively for my computer specs?

  • What CPU scaling driver and governor are you using now? Do cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver and cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor and edit the output into your question. I assume you have set the performance governor, just checking. Keep in mind that even with the performance governor CPU can throttle themselves as a function of deep idle states. – Doug Smythies Dec 02 '19 at 00:30
  • yes it printed out a bunch of the word "performance" so I believe that has been set. – Louis Nguyen Dec 02 '19 at 00:33
  • which CPU scaling driver? – Doug Smythies Dec 02 '19 at 00:34
  • acpi-cpufreq is the one – Louis Nguyen Dec 02 '19 at 19:17

1 Answers1

0

Using the acpi-cpufreq CPU scaling driver with the performance governor, as you are, should provide the fastest CPU frequency ramp up possible under load. Note that modern processors can still scale down CPU frequency as a function of deep idle states, even with the performance governor. To demonstrate what your processor will actually ramp up to, put a full 100% load on one CPU. For example:

$ taskset -c 2 yes > /dev/null
Doug Smythies
  • 15,448
  • 5
  • 44
  • 61