aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/mt-vvadd
diff options
context:
space:
mode:
authorHenry Cook <hcook@eecs.berkeley.edu>2014-12-17 19:12:08 -0800
committerHenry Cook <hcook@eecs.berkeley.edu>2014-12-17 19:12:43 -0800
commitf108f3a6c2c16beb1b12389cfa4ee517faa79945 (patch)
treeff0fde098b31e4fb526abc0c1bafdaaba885bf04 /benchmarks/mt-vvadd
parent4fbf574543fe76c2ca75c9a524782449d8ff135a (diff)
downloadriscv-tests-f108f3a6c2c16beb1b12389cfa4ee517faa79945.zip
riscv-tests-f108f3a6c2c16beb1b12389cfa4ee517faa79945.tar.gz
riscv-tests-f108f3a6c2c16beb1b12389cfa4ee517faa79945.tar.bz2
minor mt updates
Diffstat (limited to 'benchmarks/mt-vvadd')
-rw-r--r--benchmarks/mt-vvadd/mt-vvadd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/mt-vvadd/mt-vvadd.c b/benchmarks/mt-vvadd/mt-vvadd.c
index 48eae6a..2d0ca07 100644
--- a/benchmarks/mt-vvadd/mt-vvadd.c
+++ b/benchmarks/mt-vvadd/mt-vvadd.c
@@ -55,10 +55,10 @@ void thread_entry(int cid, int nc)
stats(vvadd(cid, nc, DATA_SIZE, input1_data, input2_data, results_data); barrier(nc), DATA_SIZE);
if(cid == 0) {
-//#ifdef DEBUG
+#ifdef DEBUG
printDoubleArray("out-of-place results: ", DATA_SIZE, results_data);
printDoubleArray("out-of-place verify : ", DATA_SIZE, verify_data);
-//#endif
+#endif
int res = verifyDouble(DATA_SIZE, results_data, verify_data);
if(res) exit(res);
}