diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-11 14:13:37 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-11 14:14:48 +0200 |
commit | 6f694912e0828e5cede9df1b44b58e42e28e9d7f (patch) | |
tree | 461a768103500b8282dafa9bd52a4bdbacbd698c | |
parent | e859ca1884f6b75ddbf8aa6f5190f09f92516fb4 (diff) |
rn.sh: log date and revision
-rwxr-xr-x | Microbenchmarks/STREAM/run.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Microbenchmarks/STREAM/run.sh b/Microbenchmarks/STREAM/run.sh index 1a01790..26e0339 100755 --- a/Microbenchmarks/STREAM/run.sh +++ b/Microbenchmarks/STREAM/run.sh @@ -9,9 +9,13 @@ set -e # -i: input size (number of elements, not number of bytes!) # 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 +echo "prim-benchmarks STREAM microbenchmark (dfatool edition)" +echo "Started at $(date)" +echo "Revision $(git describe --always)" + +for nr_dpus in 1 2 4 8 16 32 64 128 256 512; do + for mem in MRAM WRAM; do + for op in copy copyw add scale triad; do for nr_tasklets in 1 2 3 4 6 8 10 12 16 20 24; 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 \ |