summaryrefslogtreecommitdiff
path: root/BS/baselines/cpu/run-opti.sh
blob: 64c05b8e3c7111c2a2558edc6c6fdcbb5226c07a (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
	OMP_NUM_THREADS=4 make run_O0 | sed 's/CPU/CPU O0/'
done | tee "${HOST}-O0.txt"

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