You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
429 B
16 lines
429 B
#!/usr/bin/env bash |
|
# See https://google.github.io/benchmark/reducing_variance.html |
|
set -x |
|
|
|
sudo cpupower frequency-set --governor performance 1>/dev/null |
|
echo 0 | sudo tee /sys/devices/system/cpu/cpufreq/boost 1>/dev/null |
|
|
|
taskset -c 0 "$@" |
|
{ set +x; } 2> /dev/null |
|
result=$? |
|
set -x |
|
|
|
sudo cpupower frequency-set --governor ondemand 1>/dev/null |
|
echo 1 | sudo tee /sys/devices/system/cpu/cpufreq/boost 1>/dev/null |
|
|
|
exit "$result"
|
|
|