-
-
Save Ara4Sh/cd9fee1831129180516ea2d787242955 to your computer and use it in GitHub Desktop.
Disable hyperthreading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for cpu in $(cat /sys/devices/system/cpu/cpu*/topology/thread_siblings_list) | |
do | |
echo 0 > /sys/devices/system/cpu/cpu${cpu}/online | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment