aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/build_benches.sh
blob: 5c431f7440e0e4c53c9004b38128dbd68086433e (plain)
1
2
3
4
5
6
7
8
9
10

source benches.sh

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

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