diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-28 15:30:24 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-02-28 15:30:24 +0100 |
commit | d299f8cb13199844a7272c5d4479ac7d29920a6d (patch) | |
tree | 0b0dfa7c339f5b3f2cc51515952eb9dc864dcaaf /HST-S | |
parent | f264f58636579436f58aa3b0c2cb392938000a59 (diff) |
more run-fgbs24a
Diffstat (limited to 'HST-S')
-rwxr-xr-x | HST-S/run-fgbs24a.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/HST-S/run-fgbs24a.sh b/HST-S/run-fgbs24a.sh new file mode 100755 index 0000000..36a6ad2 --- /dev/null +++ b/HST-S/run-fgbs24a.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +set -e + +mkdir -p $(hostname) + +( + +echo "prim-benchmarks HST-S (dfatool fgbs24a edition)" +echo "Started at $(date)" +echo "Revision $(git describe --always)" + +for nr_dpus in 2543 2304 2048; do + for nr_tasklets in 16; do + echo + if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10; then + timeout --foreground -k 1m 30m bin/host_code -w 0 -e 100 -b 256 -x 2 || true + fi + done +done +echo "Completed at $(date)" +) | tee "$(hostname)/fgbs24a.txt" |