Prechádzať zdrojové kódy

SOCL: use smaller data set in matmul example

Sylvain Henry 13 rokov pred
rodič
commit
14fd603c84
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  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