diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-25 14:28:51 +0200 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-04-25 14:28:51 +0200 |
commit | aedd7ea98c1cbc363741c8869f506c228bd9ef85 (patch) | |
tree | 41b00057d57906620d662cf8b61cec09b143d6c2 | |
parent | 3145eb5b2ed843cdd0c707486346bcf9fe8c4007 (diff) | |
download | fortran-assignment1-aedd7ea98c1cbc363741c8869f506c228bd9ef85.tar.gz fortran-assignment1-aedd7ea98c1cbc363741c8869f506c228bd9ef85.zip |
add script that runs mull with different options
-rwxr-xr-x | make_results.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/make_results.sh b/make_results.sh new file mode 100755 index 0000000..5b74471 --- /dev/null +++ b/make_results.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +for KIND in 4 8 16; do + for IMPL in naiv bett dot mat bett2; do + ./build/mull $KIND $IMPL > res/${IMPL}_$KIND + done +done |