diff options
-rwxr-xr-x | GEMV/run-fgbs24a.sh | 27 | ||||
-rwxr-xr-x | GEMV/run-paper-strong-full.sh | 20 | ||||
-rwxr-xr-x | GEMV/run-paper-strong-rank.sh | 20 | ||||
-rwxr-xr-x | GEMV/run-paper-weak.sh | 21 | ||||
-rwxr-xr-x | GEMV/run.sh | 32 |
5 files changed, 0 insertions, 120 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" diff --git a/GEMV/run-paper-strong-full.sh b/GEMV/run-paper-strong-full.sh deleted file mode 100755 index 38e6123..0000000 --- a/GEMV/run-paper-strong-full.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -e - -( - -echo "prim-benchmarks GEMV strong-full (dfatool edition)" -echo "Started at $(date)" -echo "Revision $(git describe --always)" - -# >2048 are not part of upstream -for nr_dpus in 2543 2304 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/gemv_host -w 1 -e 100 -m 163840 -n 4096 || true - fi - done -done -) | tee log-paper-strong-full.txt diff --git a/GEMV/run-paper-strong-rank.sh b/GEMV/run-paper-strong-rank.sh deleted file mode 100755 index 64f0751..0000000 --- a/GEMV/run-paper-strong-rank.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -e - -( - -echo "prim-benchmarks GEMV strong-rank (dfatool edition)" -echo "Started at $(date)" -echo "Revision $(git describe --always)" - -# >64 are not part of upstream -for nr_dpus in 128 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} BL=10 verbose=1; then - timeout --foreground -k 1m 30m bin/gemv_host -w 1 -e 100 -m 8192 -n 1024 || true - fi - done -done -) | tee log-paper-strong-rank.txt diff --git a/GEMV/run-paper-weak.sh b/GEMV/run-paper-weak.sh deleted file mode 100755 index 0632e71..0000000 --- a/GEMV/run-paper-weak.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -set -e - -( - -echo "prim-benchmarks GEMV weak (dfatool edition)" -echo "Started at $(date)" -echo "Revision $(git describe --always)" - -# 256 and 512 are not part of upstream config space -for nr_dpus in 512 256 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} BL=10 verbose=1; then - i=$(( nr_dpus * 1024 )) - timeout --foreground -k 1m 30m bin/gemv_host -w 1 -e 100 -m $i -n 2048 || true - fi - done -done -) | tee log-paper-weak.txt diff --git a/GEMV/run.sh b/GEMV/run.sh deleted file mode 100755 index 68637dc..0000000 --- a/GEMV/run.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -set -e - -# BL: use 2^(BL) B blocks for MRAM <-> WRAM transfers on PIM module -# -w: number of un-timed warmup iterations -# -e: number of timed iterations -# -m: number of rows -# -n: number of cols - -( - -echo "prim-benchmarks GEMV (dfatool edition)" -echo "Started at $(date)" -echo "Revision $(git describe --always)" - -# run-paper-strong-full: m=163840 n=4096 -# run-paper-strong-rank: m=8192 n=1024 -# run-paper-weak: m=ndpus*1024 n=2048 -for n in 512 1024 2048 4096; do - for m in 512 1024 2048 4096 8192 163840; do - for nr_dpus in 1 4 8 16 32 64 128 256 512 768 1024 1536 2048; do - for nr_tasklets in 8 12 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 $m -n $n || true - fi - done - done - done -done -) | tee "log-$(hostname)-ndpus.txt" |