溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何Linux動態(tài)啟用和禁用超線程技術(shù)

發(fā)布時間:2021-07-06 18:26:14 來源:億速云 閱讀:151 作者:chen 欄目:大數(shù)據(jù)

這篇文章主要介紹“如何Linux動態(tài)啟用和禁用超線程技術(shù)”,在日常操作中,相信很多人在如何Linux動態(tài)啟用和禁用超線程技術(shù)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何Linux動態(tài)啟用和禁用超線程技術(shù)”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

intel的超線程技術(shù)能讓一個物理核上并行執(zhí)行兩個線程,大多數(shù)情況下能提高硬件資源的利用率,增強系統(tǒng)性能。對于cpu密集型的數(shù)值程序,超線程技術(shù)可能會導(dǎo)致整體程序性能下降。鑒于此,執(zhí)行OpenMP或者MPI數(shù)值程序時建議關(guān)閉超線程技術(shù)。

以下是github上找到的動態(tài)打開、關(guān)閉超線程技術(shù)的腳本。其原理是根據(jù)/sys/devices/system/cpu/cpuX/topology/thread_siblings_list文件找到邏輯核的關(guān)系,然后編輯/sys/devices/system/cpu/cpuX/online文件實現(xiàn)動態(tài)開啟和關(guān)閉超線程技術(shù)。

#!/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

備注:

  1. 腳本需root權(quán)限執(zhí)行;

  2. 可以通過cat /proc/cpuinfo查看啟用的cpu信息,該命令無需root權(quán)限;

  3. lscpu命令可查看cpu的狀態(tài)(無需root權(quán)限):超線程狀態(tài)下threads per core數(shù)值為2,禁用時為1.

<a href="https://tlanyan.me/linux%e5%8a%a8%e6%80%81%e5%90%af%e7%94%a8-%e7%a6%81%e7%94%a8%e8%b6%85%e7%ba%bf%e7%a8%8b%e6%8a%80%e6%9c%af/ht/" rel="attachment wp-att-5492"><img src="https://user-gold-cdn.xitu.io/2019/7/7/16bca80412f419e4?w=565&h=317&f=png&s=29271" alt="" width="565" height="317" class="aligncenter size-full wp-image-5492" /></a>

參考

  1. Disable / Enable HyperThreading cores on runtime - linux

到此,關(guān)于“如何Linux動態(tài)啟用和禁用超線程技術(shù)”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI