diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-11-29 14:31:13 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-11-29 14:31:13 +0100 |
commit | dcdac59f8045a94a7aebdc89e7bda94800412aba (patch) | |
tree | 3ccc6543216e186e4c6df921f1437f3aeae7920b /benchmark-scripts/milos-write.sh | |
parent | 4193b9e60f942ee1be140b02a6ad565d01380935 (diff) |
add read-only and write-only benchmarks on Xeon Max HBM
Diffstat (limited to 'benchmark-scripts/milos-write.sh')
-rwxr-xr-x | benchmark-scripts/milos-write.sh | 14 |
1 files changed, 14 insertions, 0 deletions
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 |