From 7bb062e2e774a1d8d06b4aa7d856097a4bc8b589 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 1 Jun 2023 15:30:53 +0200 Subject: BS: updates and comments --- BS/baselines/cpu/run.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'BS/baselines/cpu/run.sh') diff --git a/BS/baselines/cpu/run.sh b/BS/baselines/cpu/run.sh index 80c596c..33d5966 100755 --- a/BS/baselines/cpu/run.sh +++ b/BS/baselines/cpu/run.sh @@ -2,16 +2,24 @@ set -e +HOST="$(hostname)" + +echo $HOST + +( echo "prim-benchmarks BS CPU (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" -make +make -B verbose=1 -for nr_threads in 1 2 4 6 8 12 16 20 24 32; do - for vs in 262144 524288 1048576 2097152; do +for nr_threads in 88 64 44 32 24 20 1 2 4 6 8 12 16; do + #for vs in 262144 524288 1048576 2097152; do + # NMC also uses 262144 elements + for vs in 262144; do for i in `seq 1 20`; do OMP_NUM_THREADS=${nr_threads} timeout --foreground -k 1m 30m ./bs_omp ${vs} 16777216 || true done done done +) | tee "${HOST}-explore.txt" -- cgit v1.2.3