Kubuntu 16.10 Yakkety Yak
there seemed to be some problems with cpupower binaries installed from apt-get
based on the guide found at https://blog.sleeplessbeastie.eu/201...ernor-at-boot/
i installed cpupower sudo apt-get install linux-tools-common linux-tools-$(uname -r)u (note uname -r is 4.8.0-27-generic) then running it
then i run a heavy compute job but the above command shows that the cpu frequency is stuck at 400 mhz regardless
then i tried setting the frequency governor to "performance"
the governer didn't get changed using cpupower then as root
the cpupower command did not change the scaling governor, it takes updating it directly in /sys filesystem
and changing the frequency using
didn't helped at all (it doesn't matter what frequency steps is requested 2ghz, 1ghz, 800mhz etc)
anyone eise run into the same issue? the Intel processor is m3-6y30
there seemed to be some problems with cpupower binaries installed from apt-get
based on the guide found at https://blog.sleeplessbeastie.eu/201...ernor-at-boot/
i installed cpupower sudo apt-get install linux-tools-common linux-tools-$(uname -r)u (note uname -r is 4.8.0-27-generic) then running it
> sudo cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "powersave" may decide which speed to use within this range.
current CPU frequency: 400 MHz (asserted by call to hardware)
boost state support: Supported: yes
Active: yes ...
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "powersave" may decide which speed to use within this range.
current CPU frequency: 400 MHz (asserted by call to hardware)
boost state support: Supported: yes
Active: yes ...
then i tried setting the frequency governor to "performance"
>sudo cpupower -c all frequency-set -g performance
>sudo cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0 CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "powersave" may decide which speed to use within this range.
current CPU frequency: 400ha
Active: yes
>sudo cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0 CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "powersave" may decide which speed to use within this range.
current CPU frequency: 400ha
Active: yes
> cd /sys/devices/system/cpu/cpu0/cpufreq
> echo performance > scaling_governor
> cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "performance" may decide which speed to use within this range.
current CPU frequency: 400 MHz (asserted by call to hardware)
boost state support: Supported: yes
Active: yes ...
> echo performance > scaling_governor
> cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "performance" may decide which speed to use within this range.
current CPU frequency: 400 MHz (asserted by call to hardware)
boost state support: Supported: yes
Active: yes ...
and changing the frequency using
>cpupower -c all frequency-set -f 2.2ghz
>cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "performance" may decide which speed to use within this range.
current CPU frequency: 400 MHz (asserted by call to hardware)
boost state support: Supported: yes
Active: yes ...
>cpupower -c all frequency-info
analyzing CPU 0: driver: intel_pstate CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: Cannot determine or is not supported.
hardware limits: 400 MHz - 2.20 GHz available cpufreq governors: performance powersave current policy: frequency should be within 400 MHz and 2.20 GHz. The governor "performance" may decide which speed to use within this range.
current CPU frequency: 400 MHz (asserted by call to hardware)
boost state support: Supported: yes
Active: yes ...
anyone eise run into the same issue? the Intel processor is m3-6y30
Comment