summaryrefslogtreecommitdiff
path: root/BS
diff options
context:
space:
mode:
Diffstat (limited to 'BS')
-rwxr-xr-xBS/baselines/cpu/run-opti.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/BS/baselines/cpu/run-opti.sh b/BS/baselines/cpu/run-opti.sh
index 62a3e8b..64c05b8 100755
--- a/BS/baselines/cpu/run-opti.sh
+++ b/BS/baselines/cpu/run-opti.sh
@@ -7,9 +7,9 @@ echo $HOST
make clean
for i in $(seq 1 50); do
- make run_O0 | sed 's/CPU/CPU O0/'
+ OMP_NUM_THREADS=4 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/'
+ OMP_NUM_THREADS=4 make run_O2 | sed 's/CPU/CPU O2/'
done | tee "${HOST}-O2.txt"