aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/run_benches.sh
blob: 479d09eba9f5e05d7e6be8cf01dde2c932c9cdd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

source benches.sh

rm -f commands.txt
for bench in $benches; do
  echo "(cd $bench && make -j5 run)" >> commands.txt
done

cat commands.txt | xargs -n1 -I{} -P4 bash -c '{}'

##
# Gather all the CSV files
##

benches_csv=""
for bench in $benches; do
  if [ -f $bench/measures.csv ]; then
    benches_csv="$benches_csv $bench/measures.csv"
  fi
done

nawk 'FNR==1 && NR!=1{next;}{print}' $benches_csv > measures.csv
echo "measures.csv done"

./gengraphs.py measures.csv
echo "Graphs done"