diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-02 15:27:22 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-02 15:27:22 +0200 |
commit | 7e0597a2ddb2d07ff7b72a6fa47245774e04f964 (patch) | |
tree | 51dbd792f11428c5f61283fb5de3fc7d4f9606f7 /HST-S/run-paper-strong-full.sh | |
parent | f438d54780af4ae90638f5d57acdd5e98d6596e9 (diff) |
port HST-S to dfatool
Diffstat (limited to 'HST-S/run-paper-strong-full.sh')
-rwxr-xr-x | HST-S/run-paper-strong-full.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/HST-S/run-paper-strong-full.sh b/HST-S/run-paper-strong-full.sh new file mode 100755 index 0000000..3706585 --- /dev/null +++ b/HST-S/run-paper-strong-full.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +set -e + +( + +echo "prim-benchmarks HST-S strong-full (dfatool edition)" +echo "Started at $(date)" +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 verbose=1; then + timeout --foreground -k 1m 30m bin/host_code -w 0 -e 100 -b 256 -x 2 || true + fi + done +done +) | tee log-paper-strong-full.txt |