diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-12 18:17:19 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-12 18:17:19 +0100 |
commit | eb118b2f743656434c0c77e5318eeacc38bd9924 (patch) | |
tree | 0d97d59c59c45e9cd8057e805552cd8bb4635494 /Microbenchmarks/WRAM/run-transfer.sh | |
parent | f1fbecc7a02aafdba953479f5c91f09c4a195484 (diff) |
WRAM WiP
Diffstat (limited to 'Microbenchmarks/WRAM/run-transfer.sh')
-rwxr-xr-x | Microbenchmarks/WRAM/run-transfer.sh | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/Microbenchmarks/WRAM/run-transfer.sh b/Microbenchmarks/WRAM/run-transfer.sh new file mode 100755 index 0000000..7c4a179 --- /dev/null +++ b/Microbenchmarks/WRAM/run-transfer.sh @@ -0,0 +1,43 @@ +#!/bin/bash + +set -e + +( + +echo "prim-benchmarks WRAM microbenchmark (dfatool edition)" +echo "Started at $(date)" +echo "Revision $(git describe --always)" + +for ndpu in 1 4 8 16; do + for ntask in 1 2 4 8 12 16 20; do + for bl in 4 5 6 7 8 9 10 11; do + for op in streaming strided random; do + if make -B NR_DPUS=$ndpu NR_TASKLETS=$ntask BL=$bl OP=$op; then + bin/host_code -w 0 -e 10 || true + fi + done + done + done +done +echo "Completed at $(date)" +) | tee "log-$(hostname)-wram-only.txt" + +( + +echo "prim-benchmarks WRAM microbenchmark (dfatool edition)" +echo "Started at $(date)" +echo "Revision $(git describe --always)" + +for ndpu in 1 4 8 16; do + for ntask in 1 2 4 8 12 16 20; do + for bl in 4 5 6 7 8 9 10 11; do + for op in streaming strided random; do + if make -B NR_DPUS=$ndpu NR_TASKLETS=$ntask BL=$bl OP=$op MEM=MRAM; then + bin/host_code -w 0 -e 10 || true + fi + done + done + done +done +echo "Completed at $(date)" +) | tee "log-$(hostname)-wram-mram.txt" |