summaryrefslogtreecommitdiffstats
path: root/sysfiles/prep_bench
blob: 1a0fed3135e5c1524d8fd43af31f36c15cdc4f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Prepare cpu0 for benchmarks.
set -e
echo 1 > "/sys/devices/system/cpu/intel_pstate/no_turbo"
echo performance > "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"
cat "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list" | tr , '\n' | while read n
do
    if [ "$n" -ne 0 ]
    then
        echo 0 > "/sys/devices/system/cpu/cpu$n/online"
    fi
done