浏览代码

SOCL: use smaller data set in matmul example

Sylvain Henry 13 年之前
父节点
当前提交
14fd603c84
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      socl/examples/matmul/matmul.c

+ 2 - 2
socl/examples/matmul/matmul.c

@@ -34,9 +34,9 @@
 #define TYPE float
 
 // Basic Matrix dimensions
-#define WA (1024L * BLOCK_SIZE) // Matrix A width
+#define WA (128L * BLOCK_SIZE) // Matrix A width
 #define HA (512L * BLOCK_SIZE) // Matrix A height
-#define WB (1024L * BLOCK_SIZE) // Matrix B width
+#define WB (128L * BLOCK_SIZE) // Matrix B width
 #define HB WA  // Matrix B height
 #define WC WB  // Matrix C width 
 #define HC HA  // Matrix C height