Remove smips/host-debugging cruft
[riscv-tests.git] / benchmarks / mt-matmul / mt-matmul.c
index 9c68adaf9e7937835fdd577cb98359d7913a052b..dbb756236a74b91ef508122209af1ee2bf7cefd9 100644 (file)
 // using the matmul_gendata.pl perl script and dumped to a file named
 // dataset.h. 
 
-
-// print out arrays, etc.
-//#define DEBUG
-
 //--------------------------------------------------------------------------
 // Includes 
 
@@ -57,10 +53,5 @@ void thread_entry(int cid, int nc)
  
    int res = verify(ARRAY_SIZE, results_data, verify_data);
 
-#ifdef DEBUG
-   printArray("results:", ARRAY_SIZE, results_data);
-   printArray("verify :", ARRAY_SIZE, verify_data);
-#endif
-
    exit(res);
 }