aboutsummaryrefslogtreecommitdiffstats
path: root/test/mppa/mmult/mmult.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/mppa/mmult/mmult.h')
-rw-r--r--test/mppa/mmult/mmult.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/mppa/mmult/mmult.h b/test/mppa/mmult/mmult.h
new file mode 100644
index 00000000..50c04afd
--- /dev/null
+++ b/test/mppa/mmult/mmult.h
@@ -0,0 +1,9 @@
+#ifndef __MMULT_H__
+#define __MMULT_H__
+
+#include "../lib/types.h"
+
+void mmult_row(uint64_t *A, const uint64_t *B, const uint64_t *C);
+void mmult_column(uint64_t *A, const uint64_t *B, const uint64_t *C);
+
+#endif /* __MMULT_H__ */