diff options
-rwxr-xr-x | tinos.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tinos.sh b/tinos.sh new file mode 100755 index 0000000..48b0050 --- /dev/null +++ b/tinos.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +mkdir -p log +fn=log/${HOST}-roofline + +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} -t0 4096 \ + ::: ram_in $(seq 0 1) \ + ::: ram_out $(seq 0 1) \ + ::: cpu $(seq 0 1) \ + ::: nr_threads $(seq 1 8) \ +>> ${fn}.txt |