]> Git Repo - secp256k1.git/blob - bench_all
1st assembly version of field 5x64 code - bugfix
[secp256k1.git] / bench_all
1 #!/bin/bash
2 echo "Benchmark Results" >output.txt
3 for j in yasm; do
4     echo "5x64 $j:" >>output.txt
5     for i in O0 O1 O2 O3; do
6         make clean
7         ./configure --use-5x64 --$j
8         echo "OPTLEVEL=$i" >>config.mk
9         make bench
10         echo "OPTLEVEL=$i" >>output.txt
11         (time ./bench) |& grep real >>output.txt
12     done
13 done
14     
This page took 0.036613 seconds and 4 git commands to generate.