diff options
Diffstat (limited to 'GEMV/run-fgbs24a.sh')
-rwxr-xr-x | GEMV/run-fgbs24a.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/GEMV/run-fgbs24a.sh b/GEMV/run-fgbs24a.sh deleted file mode 100755 index 4135623..0000000 --- a/GEMV/run-fgbs24a.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -set -e - -mkdir -p $(hostname) - -ts=$(date +%Y%m%d) - -( - -echo "prim-benchmarks GEMV (dfatool fgbs24a edition)" -echo "Started at $(date)" -echo "Revision $(git describe --always)" - -for nr_dpus in 2304 2048 2543; 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/gemv_host -w 0 -e 100 -m 163840 -n 4096 || true - fi - if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 WITH_ALLOC_OVERHEAD=1 WITH_LOAD_OVERHEAD=1 WITH_FREE_OVERHEAD=1; then - timeout --foreground -k 1m 30m bin/gemv_host -w 0 -e 100 -m 163840 -n 4096 || true - fi - done -done -echo "Completed at $(date)" -) | tee "$(hostname)/${ts}-fgbs24a.txt" |