【linux】开关超线程

查看是否有开启超线程

lscpu | grep Thread

Thread(s) per core: 2

如果输出了这个,就表示有开启超线程啦~

开关超线程脚本

#!/bin/bash
HYPERTHREADING=1
function toggleHyperThreading() {
	for CPU in /sys/devices/system/cpu/cpu[0-9]*; do
		CPUID=`basename $CPU | cut -b4-`
		echo -en "CPU: $CPUID\t"
		[ -e $CPU/online ] && echo "1" > $CPU/online
		THREAD1=`cat $CPU/topology/thread_siblings_list | cut -f1 -d,`
		if [ $CPUID = $THREAD1 ]; then
			echo "-> enable"
			[ -e $CPU/online ] && echo "1" > $CPU/online
		else
		if [ "$HYPERTHREADING" -eq "0" ]; then echo "-> disabled"; else echo "-> enabled"; fi
			echo "$HYPERTHREADING" > $CPU/online
		fi
	done
}

function enabled() {
	echo -en "Enabling HyperThreading\n"
	HYPERTHREADING=1
	toggleHyperThreading
}

function disabled() {
	echo -en "Disabling HyperThreading\n"
	HYPERTHREADING=0
	toggleHyperThreading
}

#
ONLINE=$(cat /sys/devices/system/cpu/online)
OFFLINE=$(cat /sys/devices/system/cpu/offline)
echo "---------------------------------------------------"
echo -en "CPU's online: $ONLINE\t CPU's offline: $OFFLINE\n"
echo "---------------------------------------------------"
while true; do
	read -p "Type in e to enable or d disable hyperThreading or q to quit [e/d/q] ?" ed
	case $ed in
		[Ee]* ) enabled; break;;
		[Dd]* ) disabled;exit;;
		[Qq]* ) exit;;
		* ) echo "Please answer e for enable or d for disable hyperThreading.";;
	esac
done

补充

对于CPU密集型的数值程序,超线程技术可能会导致程序整体性能下降

鉴于此,执行OpenMP或者MPI数值程序时建议关闭超线程技术。

  • 2
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值