summaryrefslogtreecommitdiff
path: root/cuda-kernels/genericMatrixMultiply.cu
diff options
context:
space:
mode:
authoraamir <[email protected]>2018-09-22 15:28:40 -0700
committeraamir <[email protected]>2018-09-22 15:28:40 -0700
commit09e6092ace5213a5d5a49bf80b052802c06a4268 (patch)
tree4cef1b01b7015d5b7c730ef7b4d9589db28ffd7d /cuda-kernels/genericMatrixMultiply.cu
parent3949357047a621a06b2e7fb4fd6099cce1469d27 (diff)
debug prints
Diffstat (limited to 'cuda-kernels/genericMatrixMultiply.cu')
-rw-r--r--cuda-kernels/genericMatrixMultiply.cu6
1 files changed, 3 insertions, 3 deletions
diff --git a/cuda-kernels/genericMatrixMultiply.cu b/cuda-kernels/genericMatrixMultiply.cu
index 6a5d33f..8b96483 100644
--- a/cuda-kernels/genericMatrixMultiply.cu
+++ b/cuda-kernels/genericMatrixMultiply.cu
@@ -40,9 +40,9 @@ void cudaErrCheck_(cudaError_t stat, const char *file, int line) {
using namespace nvcuda;
// Must be multiples of 16 for wmma code to work
-#define MATRIX_M (32)
-#define MATRIX_N (32)
-#define MATRIX_K (32)
+#define MATRIX_M (64)
+#define MATRIX_N (64)
+#define MATRIX_K (64)