lscpu
我的电脑的输出看起来像-
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 2
Core(s) per socket: 2
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 69
Stepping: 1
CPU MHz: 1200.093
BogoMIPS: 3392.08
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 3072K
NUMA node0 CPU(s): 0-3
这是否意味着我有4个CPU和2个内核?
3
一个带有两个内核的芯片(插槽)由于超线程而在系统中总共显示四个CPU。
—
库萨兰达
@Kusalananda,
—
ss_iwe
CPU(s)
中的lscpu
给出cores
一个物理CPU 中逻辑中央处理器的数量()。是不是
@saisasanka是的。相关问题:unix.stackexchange.com/questions/88283/…–
—
dr_
@saisasanka在这种情况下,一个插槽中有4个CPU和2个内核。套接字是物理的,其核心也是如此。每个内核显示为2个CPU(“每个内核线程”)。
—
库萨兰达
CPU =每个插槽的内核*每个内核的线程
—
Amit24x7