diff options
Diffstat (limited to 'benchmarks/mt-matmul')
-rw-r--r-- | benchmarks/mt-matmul/mt-matmul.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/benchmarks/mt-matmul/mt-matmul.c b/benchmarks/mt-matmul/mt-matmul.c index 9c68ada..dbb7562 100644 --- a/benchmarks/mt-matmul/mt-matmul.c +++ b/benchmarks/mt-matmul/mt-matmul.c @@ -12,10 +12,6 @@ // 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); } |