https://github.com/magnusmorton/trace-analysis
Raw File
Tip revision: 4645af99638edea16d00e811c922b0fb9d6b86d9 authored by Magnus Morton on 11 January 2016, 20:33:10 UTC
subplots and recording output
Tip revision: 4645af9
runcrossprod.sh
#!/bin/bash


for bench in  `seq 10000 50000 1000000`

do
    echo $bench
    for i in `seq 2`
    do
	(perf stat ./pycket-c trace-benches/crossproduct.rkt $bench)  &>> cross${bench}
    done
done
exit 0 
back to top