diff options
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#! /bin/bash + +rm results.txt +date > results.txt + +for pow in `seq 7 30`; do + size=`echo "2^$pow" | bc` + echo $size + cmake -DSIZE=$size + make + ./gdr_test >> results.txt +done |