3 if [ ! -f numlist.bin ]; then
4 dd if=/dev/urandom of=numlist.bin bs=1000 count=100000
7 ALGORITHMS="seq datapar recurse hillis_sum hillis_partial"
8 RUNLIST="$(seq 100000 100000 1000000) $(seq 1000000 1000000 10000000) $(seq 10000000 10000000 100000000)"
12 touch stats/prefix.pre.dat
15 for prog in $ALGORITHMS; do
18 build/$prog -n $i | tee -a stats/prefix.pre.dat
25 echo "done - hit ENTER to exit"