在linux系统下能够经过cat /proc/cpuinfo来查看本机上cpu的相关信息,经过processor能够判断逻辑cpu的个数,physical id能够判断物理cpu的个数,经过cpu cores来判断每一个cpu内的核数,经过siblings和cpu cores的对比能够判断是否支持超线程。
html
[test@hash1 ~]$ cat /proc/cpuinfo |grep processor|wc -llinux
32bash
经过以上命令能够判断本机内的逻辑cpu个数为32socket
[test@hash1 ~]$ cat /proc/cpuinfo |grep physical\ id|sort|uniqide
physical id : 0ui
physical id : 1spa
经过以上输出能够判断本机内物理cpu个数为2操作系统
[test@hash1 ~]$ cat /proc/cpuinfo |grep cpu\ cores|uniq.net
cpu cores : 8线程
经过以上输出能够判断单个cpu的核数为8
[root@hash1 ~]# cat /proc/cpuinfo |grep sibling|uniq
siblings : 16
经过以上输出的结果以及与cpu cores的比较能够肯定本机支持超线程。
从以上结果咱们最终能够肯定本机上拥有2个物理cpu,每一个cpu上有8个核,每一个核上支持2个线程,从操做系统上经过top或者mpstat等监控命令能够看到有32个逻辑cpu。
写成脚本以下:
#!/bin/bash # Simple print cpu topology # Author: hashlinux function get_nr_processor() { grep '^processor' /proc/cpuinfo | wc -l } function get_nr_socket() { grep 'physical id' /proc/cpuinfo | awk -F: '{ print $2 | "sort -un"}' | wc -l } function get_nr_siblings() { grep 'siblings' /proc/cpuinfo | awk -F: '{ print $2 | "sort -un"}' } function get_nr_cores_of_socket() { grep 'cpu cores' /proc/cpuinfo | awk -F: '{ print $2 | "sort -un"}' } echo '===== CPU Topology Table =====' echo echo '+--------------+---------+-----------+' echo '| Processor ID | Core ID | Socket ID |' echo '+--------------+---------+-----------+' while read line; do if [ -z "$line" ]; then printf '| %-12s | %-7s | %-9s |\n' $p_id $c_id $s_id echo '+--------------+---------+-----------+' continue fi if echo "$line" | grep -q "^processor"; then p_id=`echo "$line" | awk -F: '{print $2}' | tr -d ' '` fi if echo "$line" | grep -q "^core id"; then c_id=`echo "$line" | awk -F: '{print $2}' | tr -d ' '` fi if echo "$line" | grep -q "^physical id"; then s_id=`echo "$line" | awk -F: '{print $2}' | tr -d ' '` fi done < /proc/cpuinfo echo awk -F: '{ if ($1 ~ /processor/) { gsub(/ /,"",$2); p_id=$2; } else if ($1 ~ /physical id/){ gsub(/ /,"",$2); s_id=$2; arr[s_id]=arr[s_id] " " p_id } } END{ for (i in arr) printf "Socket %s:%s\n", i, arr[i]; }' /proc/cpuinfo echo echo '===== CPU Info Summary =====' echo nr_processor=`get_nr_processor` echo "Logical processors: $nr_processor" nr_socket=`get_nr_socket` echo "Physical socket: $nr_socket" nr_siblings=`get_nr_siblings` echo "Siblings in one socket: $nr_siblings" nr_cores=`get_nr_cores_of_socket` echo "Cores in one socket: $nr_cores" let nr_cores*=nr_socket echo "Cores in total: $nr_cores" if [ "$nr_cores" = "$nr_processor" ]; then echo "Hyper-Threading: off" else echo "Hyper-Threading: on" fi echo echo '===== END ====='
参考资料:
http://www.qingran.net/2011/09/numa%E5%BE%AE%E6%9E%B6%E6%9E%84/
http://www.searchtb.com/2012/12/%E7%8E%A9%E8%BD%ACcpu-topology.html
http://kodango.com/cpu-topology