]> git.llucax.com Git - software/dgc/dgcbench.git/blob - run.sh
Add scripts to run the benchmark for the web
[software/dgc/dgcbench.git] / run.sh
1 #!/bin/sh
2 cpus="1 2 4"
3 test -n "$1" && cpus="$@"
4 for c in $cpus
5 do
6         ./bench.sh $c ./time-run.sh
7         ./bench.sh $c ./pause-run.sh
8 done
9