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/baselines/cpu/run.sh | |
parent | f438d54780af4ae90638f5d57acdd5e98d6596e9 (diff) |
port HST-S to dfatool
Diffstat (limited to 'HST-S/baselines/cpu/run.sh')
-rwxr-xr-x | HST-S/baselines/cpu/run.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/HST-S/baselines/cpu/run.sh b/HST-S/baselines/cpu/run.sh new file mode 100755 index 0000000..36fd28b --- /dev/null +++ b/HST-S/baselines/cpu/run.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +HOST="$(hostname)" + +echo $HOST + +( +echo "prim-benchmarks HST-S CPU (dfatool edition)" +echo "Started at $(date)" +echo "Revision $(git describe --always)" + +# baseline ./hist supports -x, however -x 0 references uninitialized variables +# and likely never has been used or tested. So we'll leave that out here. + +make -B verbose=1 + +for nr_threads in 88 64 44 32 24 20 1 2 4 6 8 12 16; do + for i in `seq 1 20`; do + timeout --foreground -k 1m 30m ./hist -t ${nr_threads} -i 1006632960 || true + done +done +) | tee "${HOST}-explore.txt" |