diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-09 07:54:15 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-09 07:54:15 +0200 |
commit | f9d26be0e2b01d7e83f2cab9c2ab21b1fb020a0c (patch) | |
tree | dfe1f9e7ae22d82a2cc56f2fdd9f0b718890fc09 /benchmark-scripts/milos-write.sh | |
parent | dbf3d46b1774908888a525c5ba255b6034dacb78 (diff) |
benchmark scripts: Add second CXL card; log git revision
Diffstat (limited to 'benchmark-scripts/milos-write.sh')
-rwxr-xr-x | benchmark-scripts/milos-write.sh | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/benchmark-scripts/milos-write.sh b/benchmark-scripts/milos-write.sh index f1d4a2c..ba50133 100755 --- a/benchmark-scripts/milos-write.sh +++ b/benchmark-scripts/milos-write.sh @@ -1,24 +1,27 @@ #!/bin/sh mkdir -p log/${HOST} -fn=log/${HOST}/write make -B numa=1 pthread=1 avx512=1 +fn=log/${HOST}/write-64bit +echo "\n${fn}\n" +echo "mbw $(git describe --all --long) $(git rev-parse HEAD)" >> ${fn}.txt 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 16) \ - :::+ ram_in $(seq 0 16) \ + ::: ram_out $(seq 0 17) \ + :::+ ram_in $(seq 0 17) \ ::: cpu $(seq 0 7) \ ::: nr_threads $(seq 1 16) \ >> ${fn}.txt fn=log/${HOST}/write-avx512 - +echo "\n${fn}\n" +echo "mbw $(git describe --all --long) $(git rev-parse HEAD)" >> ${fn}.txt parallel -j1 --eta --joblog ${fn}.joblog --resume --header : \ ./mbw -a {ram_in} -b {ram_out} -c {cpu} -n 10 -N {nr_threads} -t7 4096 \ - ::: ram_out $(seq 0 16) \ - :::+ ram_in $(seq 0 16) \ + ::: ram_out $(seq 0 17) \ + :::+ ram_in $(seq 0 17) \ ::: cpu $(seq 0 7) \ ::: nr_threads $(seq 1 16) \ >> ${fn}.txt |