1st assembly version of field 5x64 code

This commit is contained in:
Diederik Huys
2013-06-16 22:46:43 +02:00
parent 6c78924a10
commit dd804adeff
7 changed files with 386 additions and 11 deletions

14
bench_all Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
echo "Benchmark Results" >output.txt
for j in no-yasm yasm; do
echo "5x64 $j:" >>output.txt
for i in O0 O1 O2 O3; do
make clean
./configure --$j
echo "OPTLEVEL=$i" >>config.mk
make bench
echo "OPTLEVEL=$i" >>output.txt
(time ./bench) |& grep real >>output.txt
done
done