aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/bench_unrolling
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-03-13 09:33:26 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-03-13 09:33:26 +0000
commitafc64f3332941653a52faa7d441c6af1adbaccc7 (patch)
tree3815cc60888c0abd247ed0c75eb672d5c219cf87 /bench/bench_unrolling
parent16257d44ddd4e9b6ba883f3233d0364cb46d3396 (diff)
a lot of renaming
internal classes: AaBb -> ei_aa_bb IntAtRunTimeIfDynamic -> ei_int_if_dynamic unify UNROLLING_LIMIT (there was no reason to have operator= use a higher limit) etc...
Diffstat (limited to 'bench/bench_unrolling')
-rwxr-xr-xbench/bench_unrolling2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench_unrolling b/bench/bench_unrolling
index 4af791412..7934031a8 100755
--- a/bench/bench_unrolling
+++ b/bench/bench_unrolling
@@ -5,7 +5,7 @@
for ((i=1; i<16; ++i)); do
echo "Matrix size: $i x $i :"
- $CXX -O3 -I.. -DNDEBUG benchmark.cpp -DMATSIZE=$i -DEIGEN_UNROLLING_LIMIT_OPEQUAL=1024 -DEIGEN_UNROLLING_LIMIT_PRODUCT=25 -o benchmark && time ./benchmark >/dev/null
+ $CXX -O3 -I.. -DNDEBUG benchmark.cpp -DMATSIZE=$i -DEIGEN_UNROLLING_LIMIT=1024 -DEIGEN_UNROLLING_LIMIT=25 -o benchmark && time ./benchmark >/dev/null
$CXX -O3 -I.. -DNDEBUG -finline-limit=10000 benchmark.cpp -DMATSIZE=$i -DEIGEN_DONT_USE_UNROLLED_LOOPS=1 -o benchmark && time ./benchmark >/dev/null
echo " "
done