summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-08 09:21:39 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-08 09:21:39 +0200
commit6d6b0300532a48fe9f638898b630891d38173538 (patch)
tree132bf5dc2caf1cae1bee98571f66c09ef8950950 /test/correctness
parent7a7873d5527e7819249f80ba9abceb9d2d9c41cb (diff)
Made the CPU BLAS library the default reference to test against in favor of clBLAS
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/tester.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/correctness/tester.cc b/test/correctness/tester.cc
index 903e70c1..68c02da6 100644
--- a/test/correctness/tester.cc
+++ b/test/correctness/tester.cc
@@ -45,8 +45,8 @@ Tester<T,U>::Tester(int argc, char *argv[], const bool silent,
// Determines which reference to test against
#if defined(CLBLAST_REF_CLBLAS) && defined(CLBLAST_REF_CBLAS)
- compare_clblas_ = GetArgument(argc, argv, help_, kArgCompareclblas, 1);
- compare_cblas_ = GetArgument(argc, argv, help_, kArgComparecblas, 0);
+ compare_clblas_ = GetArgument(argc, argv, help_, kArgCompareclblas, 0);
+ compare_cblas_ = GetArgument(argc, argv, help_, kArgComparecblas, 1);
#elif CLBLAST_REF_CLBLAS
compare_clblas_ = GetArgument(argc, argv, help_, kArgCompareclblas, 1);
compare_cblas_ = 0;