hgraph/benchmark.sh

12 lines
325 B
Bash
Raw Normal View History

2014-04-18 08:28:45 +00:00
#!/bin/bash
rm stats2
for j in {1..10}; do
echo "run ${j}...";
for i in {1..4}; do
2014-04-18 08:30:56 +00:00
./hgraph -t bmark1haskell.N4000E80000adj bmark1haskell.N4000E80000adj.atr sampledata.p +RTS -N`echo "$i"` > graphs 2>> stats2 && tail -n 2 graphs >> stats2;
2014-04-18 08:28:45 +00:00
echo -e "\n\n" >> stats2;
done;
echo -e "run ${j}:\n" >> stats2;
done