summaryrefslogtreecommitdiff
path: root/benchmark-scripts/milos-read.sh
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2025-01-06 08:14:26 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2025-01-06 08:14:26 +0100
commit473ffedea1b5c5543e140562416537f434e394e9 (patch)
tree0770c2ed33d579055f986bbbf21175b95cb7ce05 /benchmark-scripts/milos-read.sh
parent928500c5c1a67c756c559068fef2cd4533ffe185 (diff)
benchmark-scripts: milos: include AVX512 measurements
Diffstat (limited to 'benchmark-scripts/milos-read.sh')
-rwxr-xr-xbenchmark-scripts/milos-read.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/benchmark-scripts/milos-read.sh b/benchmark-scripts/milos-read.sh
index b8c49c9..5bd5d8b 100755
--- a/benchmark-scripts/milos-read.sh
+++ b/benchmark-scripts/milos-read.sh
@@ -3,7 +3,7 @@
mkdir -p log/${HOST}
fn=log/${HOST}/read
-make -B numa=1 pthread=1
+make -B numa=1 pthread=1 avx512=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 \
@@ -12,3 +12,12 @@ parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \
::: cpu $(seq 0 7) \
::: nr_threads $(seq 1 16) \
>> ${fn}.txt
+
+fn=log/${HOST}/read-avx512
+parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \
+ ./mbw -a {ram_in} -b {ram_out} -c {cpu} -n 10 -N {nr_threads} -t6 4096 \
+ ::: ram_in $(seq 0 15) \
+ :::+ ram_out $(seq 0 15) \
+ ::: cpu $(seq 0 7) \
+ ::: nr_threads $(seq 1 16) \
+>> ${fn}.txt