/proc/cpuinfo 中的“处理器”和“cpu 核心”是什么意思?

/proc/cpuinfo 中的“处理器”和“cpu 核心”是什么意思?

可能重复:
核心和处理器之间的区别

这里的“处理器”和“CPU 核心”是什么意思?

cat /proc/cpuinfo 
    processor   : 0
    vendor_id   : GenuineIntel
    cpu family  : 6
    model       : 15
    model name  : Intel(R) Core(TM)2 Duo CPU     T5670  @ 1.80GHz
    stepping    : 13
    cpu MHz     : 1801.000
    cache size  : 2048 KB
    physical id : 0
    siblings    : 2
    core id     : 0
    cpu cores   : 2
    apicid      : 0
    initial apicid  : 0
    fdiv_bug    : no
    hlt_bug     : no
    f00f_bug    : no
    coma_bug    : no
    fpu     : yes
    fpu_exception   : yes
    cpuid level : 10
    wp      : yes
    flags       : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm ida dts
    bogomips    : 3591.62
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 36 bits physical, 48 bits virtual
    power management:

    processor   : 1
    vendor_id   : GenuineIntel
    cpu family  : 6
    model       : 15
    model name  : Intel(R) Core(TM)2 Duo CPU     T5670  @ 1.80GHz
    stepping    : 13
    cpu MHz     : 800.000
    cache size  : 2048 KB
    physical id : 0
    siblings    : 2
    core id     : 1
    cpu cores   : 2
    apicid      : 1
    initial apicid  : 1
    fdiv_bug    : no
    hlt_bug     : no
    f00f_bug    : no
    coma_bug    : no
    fpu     : yes
    fpu_exception   : yes
    cpuid level : 10
    wp      : yes
    flags       : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm lahf_lm ida dts
    bogomips    : 3590.97
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 36 bits physical, 48 bits virtual
    power management:

答案1

在这种情况下,processor只是一个标识符(从 0 开始)。您有两个处理器,因此它们是 0 和 1。CPU cores表示每个物理处理器中的核心数(此处为两个)。

答案2

一个芯片上有两个处理器核心,本质上就像在一个处理器中拥有双处理器系统一样。

中央处理器(CPU)是计算机系统的一部分,执行计算机程序的指令,是实现计算机功能的主要元素。

相关内容