Brian Silverman | 72890c2 | 2015-09-19 14:37:37 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # gcc : CXX="g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000" |
| 4 | # icc : CXX="icpc -fast -no-inline-max-size -fno-exceptions" |
| 5 | CXX=${CXX-g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000} # default value |
| 6 | |
| 7 | for ((i=1; i<16; ++i)); do |
| 8 | echo "Matrix size: $i x $i :" |
| 9 | $CXX -O3 -I.. -DNDEBUG benchmark.cpp -DMATSIZE=$i -DEIGEN_UNROLLING_LIMIT=400 -o benchmark && time ./benchmark >/dev/null |
| 10 | $CXX -O3 -I.. -DNDEBUG -finline-limit=10000 benchmark.cpp -DMATSIZE=$i -DEIGEN_DONT_USE_UNROLLED_LOOPS=1 -o benchmark && time ./benchmark >/dev/null |
| 11 | echo " " |
| 12 | done |