summaryrefslogtreecommitdiff
path: root/BS/dimes-hetsim-hbm.sh
diff options
context:
space:
mode:
Diffstat (limited to 'BS/dimes-hetsim-hbm.sh')
-rwxr-xr-xBS/dimes-hetsim-hbm.sh16
1 files changed, 12 insertions, 4 deletions
diff --git a/BS/dimes-hetsim-hbm.sh b/BS/dimes-hetsim-hbm.sh
index af1a124..b4a1d6d 100755
--- a/BS/dimes-hetsim-hbm.sh
+++ b/BS/dimes-hetsim-hbm.sh
@@ -28,34 +28,42 @@ export -f run_benchmark
(
+echo "single-node execution, DPU ref (1/4)" >&2
+
parallel -j1 --eta --joblog ${fn}.1.joblog --resume --header : \
run_benchmark i={i} nr_threads={nr_threads} ram={ram} cpu={cpu} \
input_size=${input_size_dpu} num_queries=${num_queries_dpu} \
- ::: i $(seq 1 20) \
+ ::: i $(seq 1 5) \
::: nr_threads 1 2 4 8 12 16 \
::: cpu $(seq 0 7) \
::: ram $(seq 0 15)
+echo "single-node execution, HBM ref (2/4)" >&2
+
parallel -j1 --eta --joblog ${fn}.2.joblog --resume --header : \
run_benchmark i={i} nr_threads={nr_threads} ram={ram} cpu={cpu} \
input_size=${input_size_hbm} num_queries=${num_queries_hbm} \
- ::: i $(seq 1 20) \
+ ::: i $(seq 1 5) \
::: nr_threads 1 2 4 8 12 16 \
::: cpu $(seq 0 7) \
::: ram $(seq 0 15)
+echo "multi-node execution, DPU ref (3/4)" >&2
+
parallel -j1 --eta --joblog ${fn}.3.joblog --resume --header : \
run_benchmark i={i} nr_threads={nr_threads} ram={ram} cpu={cpu} \
input_size=${input_size_dpu} num_queries=${num_queries_dpu} \
- ::: i $(seq 1 20) \
+ ::: i $(seq 1 5) \
::: nr_threads 32 48 64 96 128 \
::: cpu -1 \
::: ram $(seq 0 15)
+echo "multi-node execution, HBM ref (4/4)" >&2
+
parallel -j1 --eta --joblog ${fn}.4.joblog --resume --header : \
run_benchmark i={i} nr_threads={nr_threads} ram={ram} cpu={cpu} \
input_size=${input_size_hbm} num_queries=${num_queries_hbm} \
- ::: i $(seq 1 20) \
+ ::: i $(seq 1 5) \
::: nr_threads 32 48 64 96 128 \
::: cpu -1 \
::: ram $(seq 0 15)