summaryrefslogtreecommitdiff
path: root/TS/baselines/cpu/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'TS/baselines/cpu/run.sh')
-rwxr-xr-xTS/baselines/cpu/run.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/TS/baselines/cpu/run.sh b/TS/baselines/cpu/run.sh
index 7d8fe37..254ca15 100755
--- a/TS/baselines/cpu/run.sh
+++ b/TS/baselines/cpu/run.sh
@@ -2,15 +2,22 @@
set -e
+HOST="$(hostname)"
+
+echo $HOST
+
+(
+
echo "prim-benchmarks TS CPU (dfatool edition)"
echo "Started at $(date)"
echo "Revision $(git describe --always)"
# input size depends on file -> strong scaling only
-make
+make -B
for i in $(seq 1 10); do
- for nr_threads in 1 2 4 6 8 12 16 20 24 32; do
+ for nr_threads in 88 64 44 1 2 4 6 8 12 16 20 24 32; do
OMP_NUM_THREADS=${nr_threads} timeout --foreground -k 1m 30m ./streamp_openmp inputs/randomlist33M.txt 256 || true
done
done
+) | tee "${HOST}-explore.txt"