通过命令行查看CPU缓存的大小?

通过命令行查看CPU缓存的大小?

如何使用命令行查看我的 CPU 缓存的大小?

我想要查看有关 L1、L2 和 L3 缓存的信息。

另外,是否可以输出仅有的缓存中的信息,以便过滤掉所有其他信息?

答案1

lscpu将提供您正在寻找的信息。

lscpu | grep "cache"仅过滤掉缓存信息。这将导致类似以下内容的结果:

L1d cache:             32K
L1i cache:             32K
L2 cache:              256K
L3 cache:              3072K

答案2

系统文件系统

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“缓存发现”了解概述。

相关内容