summaryrefslogtreecommitdiff
path: root/BS/baselines/cpu/run-opti.sh
blob: 62a3e8baf8bee65791ad385cf2321561c1ca9d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

HOST="$(hostname)"

echo $HOST

make clean

for i in $(seq 1 50); do
	make run_O0 | sed 's/CPU/CPU O0/'
done | tee "${HOST}-O0.txt"

for i in $(seq 1 50); do
	make run_O2 | sed 's/CPU/CPU O2/'
done | tee "${HOST}-O2.txt"