diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-24 16:43:01 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-24 16:43:01 +0200 |
commit | e9bbdad495c7b1099e26a2bca908e33579d3e691 (patch) | |
tree | ff6e9bc0226b37374b0fe653690ec9375360ae71 /tinos.sh | |
parent | 0f8b27385219efd77b6ab8e3441a172e91ede74e (diff) |
add benchmark script for tinos
Diffstat (limited to 'tinos.sh')
-rwxr-xr-x | tinos.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tinos.sh b/tinos.sh new file mode 100755 index 0000000..1864afc --- /dev/null +++ b/tinos.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +mkdir -p log +fn=log/${HOST} + +parallel -j1 --eta --joblog ${fn}.1.joblog --resume --header : \ + build/chase -c 536870912 -i 1 -e 100 -o dfatool -n map {cpu}:{ram} \ + ::: cpu $(seq 0 1) \ + ::: ram $(seq 0 1) \ +>> ${fn}.txt + +parallel -j1 --eta --joblog ${fn}.2.joblog --resume --header : \ + build/chase -c 536870912 -i 1 -e 100 -o dfatool -n map {cpu}:{ram} -a forward {stride} \ + ::: cpu $(seq 0 1) \ + ::: ram $(seq 0 1) \ + ::: stride 1 2 4 8 16 32 64 \ +>> ${fn}.txt |