summaryrefslogtreecommitdiffstats
path: root/sysfiles/unprep_bench
blob: bf694e5a31a7a1e5d330d02f96b3af78240dc8b0 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Prepare cpu0 for ordinary tasks.
set -e
echo 0 > "/sys/devices/system/cpu/intel_pstate/no_turbo"
echo schedutil > "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"
for f in $(grep -lx 0 /sys/devices/system/cpu/cpu*/online)
do
    echo 1 > "$f"
done