aboutsummaryrefslogtreecommitdiff
path: root/src/dotmath.F90
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotmath.F90')
-rw-r--r--src/dotmath.F9015
1 files changed, 15 insertions, 0 deletions
diff --git a/src/dotmath.F90 b/src/dotmath.F90
new file mode 100644
index 0000000..e27929c
--- /dev/null
+++ b/src/dotmath.F90
@@ -0,0 +1,15 @@
+MODULE dotmat
+ IMPLICIT none
+ PRIVATE
+
+ PUBLIC :: dotmull
+ PRIVATE :: dotmull_4, dotmull_8, dotmull_16
+
+ INTERFACE dotmull
+ procedure dotmull_4, dotmull_8, dotmull_16
+ END INTERFACE dotmull
+
+CONTAINS
+
+
+END MODULE dotmat