diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-05 15:13:39 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-05 15:13:39 +0100 |
commit | 8834dec80ce31b44bcc280453f761c5be3fd7116 (patch) | |
tree | 993232782538c2b6ebb6b3f15c380ded02f734c0 /TRNS/run-paper-weak.sh | |
parent | ce2605e690ce9d4bf3cd43e4f1959200ea406a51 (diff) |
TRNS: updated and extended benchmark scripts
Diffstat (limited to 'TRNS/run-paper-weak.sh')
-rwxr-xr-x | TRNS/run-paper-weak.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/TRNS/run-paper-weak.sh b/TRNS/run-paper-weak.sh index 4d15543..f02d7d6 100755 --- a/TRNS/run-paper-weak.sh +++ b/TRNS/run-paper-weak.sh @@ -8,16 +8,21 @@ set -e # -e: number of timed iterations # -i; ignored, always uses 262144 elements -echo "prim-benchmarks BS weak (dfatool edition)" +( + +echo "prim-benchmarks TRNS weak (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" -# 256 and 512 are not part of upstream -for nr_dpus in 256 512 1 4 16 64; do +for nr_dpus in 1 4 16 64; do for nr_tasklets in 1 2 4 8 16; do echo if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets}; then - timeout --foreground -k 1m 60m bin/bs_host -w 0 -e 100 -p 1 -o 12288 -x 0 || true + timeout --foreground -k 1m 60m bin/host_code -w 0 -e 40 -p 1 -o 12288 -x 0 || true fi done done | tee log-paper-weak.txt + +echo "Completed at $(date)" + +) | tee "log-$(hostname)-prim-weak.txt" |