From dcdac59f8045a94a7aebdc89e7bda94800412aba Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 29 Nov 2024 14:31:13 +0100 Subject: add read-only and write-only benchmarks on Xeon Max HBM --- benchmark-scripts/milos-read.sh | 14 ++++++++++++++ benchmark-scripts/milos-write.sh | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100755 benchmark-scripts/milos-read.sh create mode 100755 benchmark-scripts/milos-write.sh diff --git a/benchmark-scripts/milos-read.sh b/benchmark-scripts/milos-read.sh new file mode 100755 index 0000000..b8c49c9 --- /dev/null +++ b/benchmark-scripts/milos-read.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +mkdir -p log/${HOST} +fn=log/${HOST}/read + +make -B numa=1 pthread=1 + +parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \ + ./mbw -a {ram_in} -b {ram_out} -c {cpu} -n 10 -N {nr_threads} -t4 4096 \ + ::: ram_in $(seq 0 15) \ + :::+ ram_out $(seq 0 15) \ + ::: cpu $(seq 0 7) \ + ::: nr_threads $(seq 1 16) \ +>> ${fn}.txt diff --git a/benchmark-scripts/milos-write.sh b/benchmark-scripts/milos-write.sh new file mode 100755 index 0000000..c24a3de --- /dev/null +++ b/benchmark-scripts/milos-write.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +mkdir -p log/${HOST} +fn=log/${HOST}/write + +make -B numa=1 pthread=1 + +parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \ + ./mbw -a {ram_in} -b {ram_out} -c {cpu} -n 10 -N {nr_threads} -t5 4096 \ + ::: ram_out $(seq 0 15) \ + :::+ ram_in $(seq 0 15) \ + ::: cpu $(seq 0 7) \ + ::: nr_threads $(seq 1 16) \ +>> ${fn}.txt -- cgit v1.2.3