diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-13 11:13:16 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-13 11:13:16 +0200 |
commit | ffba7bb7077fe4c1fc3493ef45d71cadfef53782 (patch) | |
tree | 547ccbae907cb65687634d0ad596d973ddf93ddf /BS/run-paper-strong-full.sh | |
parent | 8c833b75910334d02f63a0ed49da0c41bcb2093c (diff) |
BS: Remove legacy benchmark scripts
Diffstat (limited to 'BS/run-paper-strong-full.sh')
-rwxr-xr-x | BS/run-paper-strong-full.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/BS/run-paper-strong-full.sh b/BS/run-paper-strong-full.sh deleted file mode 100755 index a6129aa..0000000 --- a/BS/run-paper-strong-full.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -set -e - -# BL: use 2^(BL) B blocks for MRAM <-> WRAM transfers on PIM module -# T: data type -# -w: number of un-timed warmup iterations -# -e: number of timed iterations -# -i; ignored, always uses 262144 elements - -( - -echo "prim-benchmarks BS strong-full (dfatool edition)" -echo "Started at $(date)" -echo "Revision $(git describe --always)" - -# >2048 are not part of uptsream -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/bs_host -w 0 -e 100 -i 16777216 || true - fi - done -done -) | tee log-paper-strong-full.txt |