我正在寻找一个快速简便的程序来估算 Linux 系统上的 FLOPS。我找到了耐火板,但编译它却很烦人。我需要的只是 FLOPS 的大致估计,而不需要花一天时间研究基准测试包和安装相关软件。有这样的程序吗?编写一个在循环中乘以两个浮点数的 C 程序就足够了吗?
答案1
问题是你说的 flops 是什么意思?如果你只关心每个时钟周期有多少个最简单的浮点运算,那么它可能是时钟周期速度的 3 倍,但这和 bogomips 一样毫无意义。一些浮点运算需要很长时间(首先是除法),加法和乘法通常很快(每个 fp 单元每个时钟周期一个)。下一个问题是内存性能,上一个经典的 CRAY 有 31 个内存组是有原因的,最终 CPU 性能受到你读取和写入内存的速度的限制,那么你的问题适合什么级别的缓存?Linpack 曾经是一个真正的基准,现在它适合缓存(如果不是 L1,则是 L2),更像是一个纯理论 CPU 基准。当然,你的 SSE(等)单元也可以增加浮点性能。
你运行的是什么发行版?
这看上去是个不错的指示:http://linuxtoolkit.blogspot.com/2009/04/intel-optimized-linpack-benchmark-for.html
http://onemansjourneyintolinux.blogspot.com/2008/12/show-us-yer-flops.html
http://www.phoronix-test-suite.com/可能是安装 flops 基准的更简单方法。
但我还是想知道你为什么关心它,你用它做什么?如果你只是想要一个毫无意义的数字,你的系统 bogomips 仍然在 dmesg 中。
答案2
显然有一个“sysbench”基准测试包和命令:
sudo apt-get install sysbench
(或brew install sysbench
OS X)
像这样运行:
sysbench --test=cpu --cpu-max-prime=20000 --num-threads=2 run
比较输出:
total time: 15.3047s
參考文獻:http://www.midwesternmac.com/blogs/jeff-geerling/2013-vps-benchmarks-linode
答案3
粗略估计:
树莓派 3:462.07 * 10^6 FLOPS(来源)
- GTX 泰坦黑色 GPU:5.1 * 10^12 FLOPS(来源)
- 神威太湖之光:93 * 10^15 FLOPS(来源(2016 年纪录保持者)
林帕克
- 下载它 (关联)
- 提取它
cd benchmarks_2017/linux/mkl/benchmarks/linpack
./runme_xeon64
- 等待一段时间(超过 1 小时)
在 Thinkpad T460p 上 (英特尔 i7-6700HQ CPU), 它给:
This is a SAMPLE run script for SMP LINPACK. Change it to reflect
the correct number of CPUs/threads, problem input files, etc..
./runme_xeon64: 33: [: -gt: unexpected operator
Mi 21. Dez 11:50:29 CET 2016
Intel(R) Optimized LINPACK Benchmark data
Current date/time: Wed Dec 21 11:50:29 2016
CPU frequency: 3.491 GHz
Number of CPUs: 1
Number of cores: 4
Number of threads: 4
Parameters are set to:
Number of tests: 15
Number of equations to solve (problem size) : 1000 2000 5000 10000 15000 18000 20000 22000 25000 26000 27000 30000 35000 40000 45000
Leading dimension of array : 1000 2000 5008 10000 15000 18008 20016 22008 25000 26000 27000 30000 35000 40000 45000
Number of trials to run : 4 2 2 2 2 2 2 2 2 2 1 1 1 1 1
Data alignment value (in Kbytes) : 4 4 4 4 4 4 4 4 4 4 4 1 1 1 1
Maximum memory requested that can be used=9800701024, at the size=35000
=================== Timing linear equation system solver ===================
Size LDA Align. Time(s) GFlops Residual Residual(norm) Check
1000 1000 4 0.014 46.5838 1.165068e-12 3.973181e-02 pass
1000 1000 4 0.010 64.7319 1.165068e-12 3.973181e-02 pass
1000 1000 4 0.009 77.3583 1.165068e-12 3.973181e-02 pass
1000 1000 4 0.010 67.0096 1.165068e-12 3.973181e-02 pass
2000 2000 4 0.064 83.6177 5.001027e-12 4.350281e-02 pass
2000 2000 4 0.063 84.5568 5.001027e-12 4.350281e-02 pass
5000 5008 4 0.709 117.6800 2.474679e-11 3.450740e-02 pass
5000 5008 4 0.699 119.2350 2.474679e-11 3.450740e-02 pass
10000 10000 4 4.895 136.2439 9.069137e-11 3.197870e-02 pass
10000 10000 4 4.904 135.9888 9.069137e-11 3.197870e-02 pass
15000 15000 4 17.260 130.3870 2.052533e-10 3.232773e-02 pass
15000 15000 4 18.159 123.9303 2.052533e-10 3.232773e-02 pass
18000 18008 4 31.091 125.0738 2.611497e-10 2.859910e-02 pass
18000 18008 4 31.869 122.0215 2.611497e-10 2.859910e-02 pass
20000 20016 4 44.877 118.8622 3.442628e-10 3.047480e-02 pass
20000 20016 4 44.646 119.4762 3.442628e-10 3.047480e-02 pass
22000 22008 4 57.918 122.5811 4.714135e-10 3.452918e-02 pass
22000 22008 4 57.171 124.1816 4.714135e-10 3.452918e-02 pass
25000 25000 4 86.259 120.7747 5.797896e-10 3.297056e-02 pass
25000 25000 4 83.721 124.4356 5.797896e-10 3.297056e-02 pass
26000 26000 4 97.420 120.2906 5.615238e-10 2.952660e-02 pass
26000 26000 4 96.061 121.9924 5.615238e-10 2.952660e-02 pass
27000 27000 4 109.479 119.8722 5.956148e-10 2.904520e-02 pass
30000 30000 1 315.697 57.0225 8.015488e-10 3.159714e-02 pass
35000 35000 1 2421.281 11.8061 1.161127e-09 3.370575e-02 pass
Performance Summary (GFlops)
Size LDA Align. Average Maximal
1000 1000 4 63.9209 77.3583
2000 2000 4 84.0872 84.5568
5000 5008 4 118.4575 119.2350
10000 10000 4 136.1164 136.2439
15000 15000 4 127.1586 130.3870
18000 18008 4 123.5477 125.0738
20000 20016 4 119.1692 119.4762
22000 22008 4 123.3813 124.1816
25000 25000 4 122.6052 124.4356
26000 26000 4 121.1415 121.9924
27000 27000 4 119.8722 119.8722
30000 30000 1 57.0225 57.0225
35000 35000 1 11.8061 11.8061
Residual checks PASSED
End of tests
Done: Mi 21. Dez 12:58:23 CET 2016
答案4
我强烈推荐英特尔提供的可立即运行的 linpack 版本: http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download/