summaryrefslogtreecommitdiff
path: root/benchmark-scripts/milos-read.sh
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark-scripts/milos-read.sh')
-rwxr-xr-xbenchmark-scripts/milos-read.sh14
1 files changed, 9 insertions, 5 deletions
diff --git a/benchmark-scripts/milos-read.sh b/benchmark-scripts/milos-read.sh
index 656456e..1f77cfe 100755
--- a/benchmark-scripts/milos-read.sh
+++ b/benchmark-scripts/milos-read.sh
@@ -1,23 +1,27 @@
#!/bin/sh
mkdir -p log/${HOST}
-fn=log/${HOST}/read
make -B numa=1 pthread=1 avx512=1
+fn=log/${HOST}/read-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} -t4 4096 \
- ::: ram_in $(seq 0 16) \
- :::+ ram_out $(seq 0 16) \
+ ::: ram_in $(seq 0 17) \
+ :::+ ram_out $(seq 0 17) \
::: cpu $(seq 0 7) \
::: nr_threads $(seq 1 16) \
>> ${fn}.txt
fn=log/${HOST}/read-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} -t6 4096 \
- ::: ram_in $(seq 0 16) \
- :::+ ram_out $(seq 0 16) \
+ ::: ram_in $(seq 0 17) \
+ :::+ ram_out $(seq 0 17) \
::: cpu $(seq 0 7) \
::: nr_threads $(seq 1 16) \
>> ${fn}.txt