summaryrefslogtreecommitdiff
path: root/RED/run.sh
diff options
context:
space:
mode:
authorJuan Gomez Luna <juan.gomez@safari.ethz.ch>2021-06-16 19:46:05 +0200
committerJuan Gomez Luna <juan.gomez@safari.ethz.ch>2021-06-16 19:46:05 +0200
commit3de4b495fb176eba9a0eb517a4ce05903cb67acb (patch)
treefc6776a94549d2d4039898f183dbbeb2ce013ba9 /RED/run.sh
parentef5c3688c486b80a56d3c1cded25f2b2387f2668 (diff)
PrIM -- first commit
Diffstat (limited to 'RED/run.sh')
-rwxr-xr-xRED/run.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/RED/run.sh b/RED/run.sh
new file mode 100755
index 0000000..9d70a51
--- /dev/null
+++ b/RED/run.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+for i in 1
+do
+ for j in BARRIER HAND
+ do
+ for k in 1 2 4 8 16
+ do
+ PERF=1 NR_DPUS=$i NR_TASKLETS=$k BL=10 VERSION=TREE SYNC=$j make all
+ wait
+ ./bin/host_code -w 2 -e 10 -i 2097152 > profile/TREE_${j}_tl${k}_dpu${i}.txt
+ #./bin/host_code -w 2 -e 10 -i 2048 > profile/TREE_${j}_tl${k}_dpu${i}.txt
+ wait
+ make clean
+ wait
+ done
+ done
+done
+
+for i in 1
+do
+ for k in 1 2 4 8 16
+ do
+ PERF=1 NR_DPUS=$i NR_TASKLETS=$k BL=10 VERSION=SINGLE make all
+ wait
+ ./bin/host_code -w 2 -e 10 -i 2097152 > profile/SINGLE_SINGLE_tl${k}_dpu${i}.txt
+ #./bin/host_code -w 2 -e 10 -i 2048 > profile/SINGLE_SINGLE_tl${k}_dpu${i}.txt
+ wait
+ make clean
+ wait
+ done
+done