web-dev-qa-db-ja.com

/ 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:
3
why

この場合、processorは単なる識別子(0から始まります)です。 2つのプロセッサがあるので、それらは0と1です。CPU coresは、各物理プロセッサのコア数を意味します(ここでは2つ)。

3
BoyMars

これは、基本的に1つのプロセッサにデュアルプロセッサシステムを搭載するのと同じように、1つのダイに2つのプロセッサコアを搭載したものです。

中央処理装置(CPU)は、コンピュータープログラムの命令を実行するコンピューターシステムの一部であり、コンピューターの機能を実行する主要な要素です。

0
Matt