summaryrefslogtreecommitdiff
path: root/Microbenchmarks/STREAM/run.sh
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-05-10 15:24:36 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-05-10 15:24:36 +0200
commit411ac9110820d8d177fca67c19401491d2a83791 (patch)
treee41e91eafe88150c5c409af2e0bb750f8db97fa7 /Microbenchmarks/STREAM/run.sh
parentce9cc7975bad005cb4f7cf260b92ee7e8c85249e (diff)
re-order run.sh
Diffstat (limited to 'Microbenchmarks/STREAM/run.sh')
-rwxr-xr-xMicrobenchmarks/STREAM/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Microbenchmarks/STREAM/run.sh b/Microbenchmarks/STREAM/run.sh
index 24b08df..1a01790 100755
--- a/Microbenchmarks/STREAM/run.sh
+++ b/Microbenchmarks/STREAM/run.sh
@@ -10,9 +10,9 @@ set -e
# 2097152 B -> 2M is maximum for 64bit types (due to 16M per DPU)
for mem in MRAM WRAM; do
+ for op in copy copyw add scale triad; do
for nr_dpus in 1 2 4 8 16 32 64 128 256 512; do
for nr_tasklets in 1 2 3 4 6 8 10 12 16 20 24; do
- for op in copy copyw add scale triad; do
for dt in uint8_t uint16_t uint32_t uint64_t float double; do
if make -B MEM=${mem} OP=${op} NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 T=${dt} UNROLL=1 \
|| make -B MEM=${mem} OP=${op} NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 T=${dt} UNROLL=0; then