According to this post
Cannot change Intel turbo boost (/sys/devices/system/cpu/intel_pstate/no_turbo/ not accessible)
I followed the steps. And it seems like I have to disable Turboboost at BIOS because I faced the same problem as him, but my BIOS doesn't have an option to disable it (InsydeH2O BIOS). I have to disable it because I want to test the FLOPs via PAPI.
So I would like to ask if there are alternative ways to disable it?
echo "1" | sudo tee sys/devices/system/cpu/intel_pstate/no_turbo
and it worked properly. Maybe it's because of gedit because I got the same error as him on gedit. But when I checked viagrep MHz /proc/cpuinfo
, it seems that CPU freq scaling is still enabled. How can I stop this feature temporarily to run PAPI's FLOPs testing program. My CPU is Intel® Core™ i7-4700MQ CPU @ 2.40GHz w/ 4 cores and 8 threads. – EkBumYe Mar 04 '17 at 15:22sudo su
thenfor file in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do echo "performance" > $file; done
then check itcat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
thenexit
. – Doug Smythies Mar 04 '17 at 15:35