aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2019-04-25 14:28:51 +0200
committerWojtek Kosior <kwojtus@protonmail.com>2019-04-25 14:28:51 +0200
commitaedd7ea98c1cbc363741c8869f506c228bd9ef85 (patch)
tree41b00057d57906620d662cf8b61cec09b143d6c2
parent3145eb5b2ed843cdd0c707486346bcf9fe8c4007 (diff)
downloadfortran-assignment1-aedd7ea98c1cbc363741c8869f506c228bd9ef85.tar.gz
fortran-assignment1-aedd7ea98c1cbc363741c8869f506c228bd9ef85.zip
add script that runs mull with different options
-rwxr-xr-xmake_results.sh7
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