summaryrefslogtreecommitdiff
path: root/TS/baselines/cpu/run.sh
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-31 15:44:51 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-31 15:44:51 +0200
commit20e2656d51a2d13a6d4783b97933e8098a1ff158 (patch)
treeaaefe7575476ab8f8ac3032fa4dbc8cb3bb6304a /TS/baselines/cpu/run.sh
parentea5352505750377a1de36c1fa12e012dc0d3af4c (diff)
TS: port CPU and NMC versions to dfatool
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"