numactl --hardware 输出的大小有何含义
有谁知道“numactl --hardware”输出的“节点大小”的确切含义。我这么问是因为我预计这个内存值是固定的,但它在我的一些主机上略有变化。 numa 配置文件没有任何变化。
例如
$ numactl --hardware
available: 2 nodes (0-1)
node 0 cpus: 0 1 2 3 4 5 6 7 8 9
node 0 size: 46963 MB
node 0 free: 22655 MB
node 1 cpus: 10 11 12 13 14 15 16 17 18 19
node 1 size: 48360 MB
node 1 free: 37787 MB
node distances:
node 0 1
0: 10 21
1: 21 10
Does anyone know the exact meaning of "node size" for "numactl --hardware" output. I'm asking because I expected this memory value to be fixed but it changes slightly on some of my hosts. There have been no changes to the numa profile.
e.g.
$ numactl --hardware
available: 2 nodes (0-1)
node 0 cpus: 0 1 2 3 4 5 6 7 8 9
node 0 size: 46963 MB
node 0 free: 22655 MB
node 1 cpus: 10 11 12 13 14 15 16 17 18 19
node 1 size: 48360 MB
node 1 free: 37787 MB
node distances:
node 0 1
0: 10 21
1: 21 10
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这就是共享 L3 缓存的大小。您可以通过运行
lstopo
或cat /proc/cpuinfo
从 numactl 以外的来源查看 L3 缓存大小来确认这一点。I think that would be the size of the shared L3 cache. You can confirm this by running
lstopo
orcat /proc/cpuinfo
to look at the L3 cache size from sources other than numactl.