CPU 信息

CPU 信息

有没有办法知道L1、L2、L3 缓存和 Ubuntu 中的 RAM?

是否有我可以查看的终端命令或文件?

答案1

CPU 信息

使用处理器命令:

$ lscpu
Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                2
On-line CPU(s) list:   0,1
Thread(s) per core:    1
Core(s) per socket:    2
Socket(s):             1
NUMA node(s):          1
Vendor ID:             GenuineIntel
CPU family:            15
Model:                 6
Stepping:              5
CPU MHz:               2400.000
BogoMIPS:              6000.33
L1d cache:             16K
L2 cache:              2048K
NUMA node0 CPU(s):     0,1

列出的信息是针对每个 CPU 核心的。

内存信息

自由的命令(-h 以人类可读的形式给出结果,即 GiB 而不是字节):

$ free -h
             total       used       free     shared    buffers     cached
Mem:          2.0G       390M       1.6G        10M        15M       160M
-/+ buffers/cache:       215M       1.7G
Swap:         2.0G         0B       2.0G

答案2

这将为您提供缓存信息。套接字标识将告诉您该部分中引用了哪个缓存。

sudo dmidecode -t cache

对于 RAM,有几个需要查看的内容,但 meminfo 应该可以做到。我在这里使用 grep 仅显示总内存/可用内存,但您可以使用 less 或 cat 查看全部内容。它显示的内存大小和使用情况信息远多于大小。

grep Mem /proc/meminfo

答案3

基于杰卡布拉姆斯使用以下命令回答并从中过滤“缓存”,显示每个缓存项。

lscpu | grep cache

和内存:

free -h

有关 RAM、进程等的更多信息,您可以在发行版上使用 htop。在 ubuntu 上按如下方式安装。

sudo apt-get install htop

答案4

系统文件系统

for d in /sys/devices/system/cpu/cpu0/cache/index*;
  do tail -c+1 $d/{level,type,size}
  echo
done

给出:

==> /sys/devices/system/cpu/cpu0/cache/index0/level <==
1

==> /sys/devices/system/cpu/cpu0/cache/index0/type <==
Data

==> /sys/devices/system/cpu/cpu0/cache/index0/size <==
32K

==> /sys/devices/system/cpu/cpu0/cache/index1/level <==
1

==> /sys/devices/system/cpu/cpu0/cache/index1/type <==
Instruction

==> /sys/devices/system/cpu/cpu0/cache/index1/size <==
32K

==> /sys/devices/system/cpu/cpu0/cache/index2/level <==
2

==> /sys/devices/system/cpu/cpu0/cache/index2/type <==
Unified

==> /sys/devices/system/cpu/cpu0/cache/index2/size <==
256K

==> /sys/devices/system/cpu/cpu0/cache/index3/level <==
3

==> /sys/devices/system/cpu/cpu0/cache/index3/type <==
Unified

==> /sys/devices/system/cpu/cpu0/cache/index3/size <==
8192K

getconf

getconf -a | grep CACHE

给出:

LEVEL1_ICACHE_SIZE                 32768
LEVEL1_ICACHE_ASSOC                8
LEVEL1_ICACHE_LINESIZE             64
LEVEL1_DCACHE_SIZE                 32768
LEVEL1_DCACHE_ASSOC                8
LEVEL1_DCACHE_LINESIZE             64
LEVEL2_CACHE_SIZE                  262144
LEVEL2_CACHE_ASSOC                 8
LEVEL2_CACHE_LINESIZE              64
LEVEL3_CACHE_SIZE                  20971520
LEVEL3_CACHE_ASSOC                 20
LEVEL3_CACHE_LINESIZE              64
LEVEL4_CACHE_SIZE                  0
LEVEL4_CACHE_ASSOC                 0
LEVEL4_CACHE_LINESIZE              0

或者对于单个级别:

getconf LEVEL2_CACHE_SIZE

这个接口很酷的一点是,它只是 POSIX sysconfC 函数的包装器(缓存参数是非 POSIX 扩展),因此它也可以在 C 代码中使用:

long l2 = sysconf(_SC_LEVEL2_CACHE_SIZE);

在 Ubuntu 16.04 中测试。

x86 CPUID 指令

CPUID x86 指令还提供缓存信息,并且可以由用户空间直接访问:https://en.wikipedia.org/wiki/CPUID

glibc 似乎对 x86 使用该方法。我还没有通过逐步调试/指令跟踪来确认,但 2.28 的源代码sysdeps/x86/cacheinfo.c这样做:

__cpuid (2, eax, ebx, ecx, edx);

TODO 创建一个最小的 C 示例,现在很懒,询问:https://stackoverflow.com/questions/14283171/how-to-receive-l1-l2-l3-cache-size-using-cpuid-instruction-in-x86

ARM 还具有体系结构定义的机制,可以通过寄存器(例如缓存大小 ID 寄存器 (CCSIDR))查找缓存大小,请参阅ARMv8 程序员手册11.6“缓存发现”了解概述。

相关内容