We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75ccb3 commit 834b2e8Copy full SHA for 834b2e8
dev-docs/performance-monitoring/scripts/linux-perf-settings.sh
@@ -0,0 +1,16 @@
1
+#!/bin/bash
2
+
3
+# This assumes intel processors!!
4
5
+# Intel
6
+echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo
7
+# AMD
8
+# echo 0 > /sys/devices/system/cpu/cpufreq/boost
9
10
+for i in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
11
+do
12
+ echo performance > $i
13
+done
14
15
+echo 0 > /proc/sys/kernel/randomize_va_space
16
0 commit comments