machine_setup/ansible/roles/cpu/files/cpu_set_perf_perc_linux_intel

28 lines
1.0 KiB
Plaintext
Raw Normal View History

2023-03-25 13:21:43 +00:00
#!/usr/bin/env bash
#
# Tell speedshift whether to maximize CPU performance (100) or energy
# efficiency (0). If set to 101 this will enable turboboost.
2023-03-25 13:21:43 +00:00
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
perc=$1
if [ "$perc" -gt 100 ]; then
echo 0 | tee /sys/devices/system/cpu/intel_pstate/no_turbo
else
echo 1 | tee /sys/devices/system/cpu/intel_pstate/no_turbo
fi
if [ "$perc" -ge 80 ]; then
2023-03-25 13:21:43 +00:00
echo "performance" | tee /sys/devices/system/cpu/cpufreq/policy*/energy_performance_preference
elif [ "$perc" -ge 60 ]; then
echo "balance_performance" | tee /sys/devices/system/cpu/cpufreq/policy*/energy_performance_preference
elif [ "$perc" -ge 40 ]; then
echo "default" | tee /sys/devices/system/cpu/cpufreq/policy*/energy_performance_preference
elif [ "$perc" -ge 20 ]; then
echo "balance_power" | tee /sys/devices/system/cpu/cpufreq/policy*/energy_performance_preference
else
echo "power" | tee /sys/devices/system/cpu/cpufreq/policy*/energy_performance_preference
2023-03-25 13:21:43 +00:00
fi