diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-01 15:30:53 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-01 15:30:53 +0200 |
commit | 7bb062e2e774a1d8d06b4aa7d856097a4bc8b589 (patch) | |
tree | 3363f6f67a6f9f6b7f2868750a0d63adeb8d5748 /BS/run-paper-strong-full.sh | |
parent | a27736998b1326f8bdf927b6f856d0592269a895 (diff) |
BS: updates and comments
Diffstat (limited to 'BS/run-paper-strong-full.sh')
-rwxr-xr-x | BS/run-paper-strong-full.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/BS/run-paper-strong-full.sh b/BS/run-paper-strong-full.sh index 3617ffe..a5195f9 100755 --- a/BS/run-paper-strong-full.sh +++ b/BS/run-paper-strong-full.sh @@ -8,6 +8,8 @@ set -e # -e: number of timed iterations # -i; ignored, always uses 262144 elements +( + echo "prim-benchmarks BS strong-full (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" @@ -15,8 +17,9 @@ echo "Revision $(git describe --always)" for nr_dpus in 256 512 1024 2048; do for nr_tasklets in 1 2 4 8 16; do echo - if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10; then + if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 verbose=1; then timeout --foreground -k 1m 30m bin/bs_host -w 0 -e 100 -i 16777216 || true fi done -done | tee log-paper-strong-full.txt +done +) | tee log-paper-strong-full.txt |