diff options
author | Juan Gomez Luna <juan.gomez@safari.ethz.ch> | 2021-06-16 19:46:05 +0200 |
---|---|---|
committer | Juan Gomez Luna <juan.gomez@safari.ethz.ch> | 2021-06-16 19:46:05 +0200 |
commit | 3de4b495fb176eba9a0eb517a4ce05903cb67acb (patch) | |
tree | fc6776a94549d2d4039898f183dbbeb2ce013ba9 /Microbenchmarks/CPU-DPU/run.sh | |
parent | ef5c3688c486b80a56d3c1cded25f2b2387f2668 (diff) |
PrIM -- first commit
Diffstat (limited to 'Microbenchmarks/CPU-DPU/run.sh')
-rwxr-xr-x | Microbenchmarks/CPU-DPU/run.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Microbenchmarks/CPU-DPU/run.sh b/Microbenchmarks/CPU-DPU/run.sh new file mode 100755 index 0000000..09cdd7a --- /dev/null +++ b/Microbenchmarks/CPU-DPU/run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +for i in 1 2 4 8 16 32 64 +do + for j in 1 + do + for k in SERIAL PUSH BROADCAST + do + for l in 1 4 16 64 256 1024 4096 16384 65536 262144 1048576 4194304 + do + NR_DPUS=$i NR_TASKLETS=$j BL=10 TRANSFER=$k make all + wait + ./bin/host_code -w 5 -e 20 -i ${l} >& profile/${i}_tl${j}_TR${k}_i${l}.txt + wait + make clean + wait + done + done + done +done |