Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
spbench | 2017-11-22 | ||
btl | 2017-11-22 | ||
vdw_new.cpp | 2017-11-22 | 1.2 kB | |
spmv.cpp | 2017-11-22 | 6.1 kB | |
sparse_trisolver.cpp | 2017-11-22 | 6.1 kB | |
sparse_setter.cpp | 2017-11-22 | 13.8 kB | |
sparse_transpose.cpp | 2017-11-22 | 2.3 kB | |
sparse_lu.cpp | 2017-11-22 | 3.0 kB | |
sparse_product.cpp | 2017-11-22 | 9.0 kB | |
sparse_randomsetter.cpp | 2017-11-22 | 3.4 kB | |
sparse_cholesky.cpp | 2017-11-22 | 6.3 kB | |
sparse_dense_product.cpp | 2017-11-22 | 5.1 kB | |
quat_slerp.cpp | 2017-11-22 | 6.0 kB | |
quatmul.cpp | 2017-11-22 | 1.1 kB | |
README.txt | 2017-11-22 | 2.0 kB | |
geometry.cpp | 2017-11-22 | 3.3 kB | |
product_threshold.cpp | 2017-11-22 | 3.2 kB | |
check_cache_queries.cpp | 2017-11-22 | 3.3 kB | |
eig33.cpp | 2017-11-22 | 7.1 kB | |
bench_sum.cpp | 2017-11-22 | 320 Bytes | |
bench_unrolling | 2017-11-22 | 651 Bytes | |
bench_multi_compilers.sh | 2017-11-22 | 618 Bytes | |
bench_norm.cpp | 2017-11-22 | 11.4 kB | |
bench_reverse.cpp | 2017-11-22 | 2.2 kB | |
bench_gemm.cpp | 2017-11-22 | 9.2 kB | |
BenchUtil.h | 2017-11-22 | 2.5 kB | |
benchVecAdd.cpp | 2017-11-22 | 5.2 kB | |
BenchSparseUtil.h | 2017-11-22 | 3.9 kB | |
BenchTimer.h | 2017-11-22 | 4.3 kB | |
benchmark_suite | 2017-11-22 | 1.2 kB | |
benchmarkX.cpp | 2017-11-22 | 640 Bytes | |
benchmarkXcwise.cpp | 2017-11-22 | 605 Bytes | |
benchmark.cpp | 2017-11-22 | 790 Bytes | |
benchmarkSlice.cpp | 2017-11-22 | 835 Bytes | |
benchEigenSolver.cpp | 2017-11-22 | 5.8 kB | |
benchFFT.cpp | 2017-11-22 | 2.8 kB | |
benchGeometry.cpp | 2017-11-22 | 3.6 kB | |
benchBlasGemm.cpp | 2017-11-22 | 6.3 kB | |
benchCholesky.cpp | 2017-11-22 | 3.6 kB | |
basicbench.cxxlist | 2017-11-22 | 1.4 kB | |
basicbenchmark.cpp | 2017-11-22 | 1.1 kB | |
basicbenchmark.h | 2017-11-22 | 1.7 kB | |
Totals: 42 Items | 153.0 kB | 0 |
This folder contains a couple of benchmark utities and Eigen benchmarks. **************************** * bench_multi_compilers.sh * **************************** This script allows to run a benchmark on a set of different compilers/compiler options. It takes two arguments: - a file defining the list of the compilers with their options - the .cpp file of the benchmark Examples: $ ./bench_multi_compilers.sh basicbench.cxxlist basicbenchmark.cpp g++-4.1 -O3 -DNDEBUG -finline-limit=10000 3d-3x3 / 4d-4x4 / Xd-4x4 / Xd-20x20 / 0.271102 0.131416 0.422322 0.198633 0.201658 0.102436 0.397566 0.207282 g++-4.2 -O3 -DNDEBUG -finline-limit=10000 3d-3x3 / 4d-4x4 / Xd-4x4 / Xd-20x20 / 0.107805 0.0890579 0.30265 0.161843 0.127157 0.0712581 0.278341 0.191029 g++-4.3 -O3 -DNDEBUG -finline-limit=10000 3d-3x3 / 4d-4x4 / Xd-4x4 / Xd-20x20 / 0.134318 0.105291 0.3704 0.180966 0.137703 0.0732472 0.31225 0.202204 icpc -fast -DNDEBUG -fno-exceptions -no-inline-max-size 3d-3x3 / 4d-4x4 / Xd-4x4 / Xd-20x20 / 0.226145 0.0941319 0.371873 0.159433 0.109302 0.0837538 0.328102 0.173891 $ ./bench_multi_compilers.sh ompbench.cxxlist ompbenchmark.cpp g++-4.2 -O3 -DNDEBUG -finline-limit=10000 -fopenmp double, fixed-size 4x4: 0.00165105s 0.0778739s double, 32x32: 0.0654769s 0.075289s => x0.869674 (2) double, 128x128: 0.054148s 0.0419669s => x1.29025 (2) double, 512x512: 0.913799s 0.428533s => x2.13239 (2) double, 1024x1024: 14.5972s 9.3542s => x1.5605 (2) icpc -fast -DNDEBUG -fno-exceptions -no-inline-max-size -openmp double, fixed-size 4x4: 0.000589848s 0.019949s double, 32x32: 0.0682781s 0.0449722s => x1.51823 (2) double, 128x128: 0.0547509s 0.0435519s => x1.25714 (2) double, 512x512: 0.829436s 0.424438s => x1.9542 (2) double, 1024x1024: 14.5243s 10.7735s => x1.34815 (2)