在学位论文的写作过程中,通常会对实验的软硬件环境进行详细的描述,而CPU信息是一个非常重要的参数。那么,如何查看电脑中的CPU描述信息呢?
手动查看逻辑CPU个数
在实验中,我使用一台个人电脑MacBook Pro和多台Linux服务器。
- 对于Linux来说,CPU的描述信息均存放在文件
/proc/cpuinfo
中
1.如何直接查看CPU的型号呢?
1 | [root@hgs ~]# cat /proc/cpuinfo | grep "model name" | uniq |
2.如何直接查看物理CPU的个数呢?1
2[root@hgs ~]# cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l
2
3.如何直接查看每个物理CPU的核数呢?
1 | [root@hgs ~]# cat /proc/cpuinfo | grep "cpu cores" | uniq |
4.如何直接查看每个物理CPU中逻辑CPU的个数呢?
1 | [root@hgs ~]# cat /proc/cpuinfo | grep "siblings" | uniq |
5.如何直接查看计算机中逻辑CPU的总数呢?
1 | [root@hgs ~]# cat /proc/cpuinfo | grep "processor" | wc -l |
逻辑CPU的数量 = 物理CPU的数量 * 每个物理CPU中逻辑CPU的数量
- 对于macOS来说,可以使用下面的命令:
1 | 该命令会输出关于CPU的全部信息 |
1.如果只想查看CPU的型号,可以使用如下的方式:
1 | hgs:~ hegongshan$ sysctl machdep.cpu.brand_string |
2.如果只想查看每个物理CPU的核数:
1 | hgs:~ hegongshan$ sysctl machdep.cpu.core_count |
3.查看计算机中逻辑CPU的总数
1 | hgs:~ hegongshan$ sysctl machdep.cpu.thread_count |
4.查看CPU个数
1 | hgs:~ hegongshan$ system_profiler SPHardwareDataType | grep "Number of Processors" |
使用编程语言查看逻辑CPU个数
- C:使用unistd.h中的sysconf函数
1 | // 定义在unistd.h中 |
代码如下:
1 |
|
- Java
1 | Runtime.getRuntime().availableProcessors(); |
- Python
1 | import os |