如何清除CPU L1和L2缓存

时间:2010-08-09 18:48:01

标签: caching

我在xeon服务器上运行基准测试,我重复执行2-3次。我想在重复运行时擦除L1和L2中的缓存内容。你能建议任何方法吗?

1 个答案:

答案 0 :(得分:9)

尝试通过CPU(即不通过DMA)重复读取大数据。 像:

 int main() {
     const int size = 20*1024*1024; // Allocate 20M. Set much larger then L2
     char *c = (char *)malloc(size);
     for (int i = 0; i < 0xffff; i++)
       for (int j = 0; j < size; j++)
         c[j] = i*j;
 }

然而,依赖于服务器更大的问题可能是磁盘缓存(在内存中)然后是L1 / L2缓存。在Linux上(例如)drop using:

 sync
 echo 3 > /proc/sys/vm/drop_caches

编辑:生成无效的大型程序是微不足道的:

#!/usr/bin/ruby
puts "main:"
200000.times { puts "  nop" }
puts "  xor rax, rax"
puts "  ret"

以不同的名称运行几次(不是脚本生成的代码)应该做的工作