summaryrefslogtreecommitdiff
path: root/test/correctness/tester.h
diff options
context:
space:
mode:
authorcnugteren <web@cedricnugteren.nl>2016-04-03 16:08:48 -0700
committercnugteren <web@cedricnugteren.nl>2016-04-03 16:08:48 -0700
commit2981ca4d3caf5b1fcc346bc6df65f2ee6ccac141 (patch)
tree6ec690bcb9fd616af93821445887cf8c73cd4a2e /test/correctness/tester.h
parent8217b017028412594f663a66187f99c3ee0878c9 (diff)
parentc4ab9bda6321aab66e05fd3d00e7b58443c640ef (diff)
Merge branch 'cpu_blas' into development
Diffstat (limited to 'test/correctness/tester.h')
-rw-r--r--test/correctness/tester.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/correctness/tester.h b/test/correctness/tester.h
index db714f3d..d489f829 100644
--- a/test/correctness/tester.h
+++ b/test/correctness/tester.h
@@ -23,7 +23,9 @@
#include <memory>
// The libraries
-#include <clBLAS.h>
+#ifdef CLBLAST_REF_CLBLAS
+ #include <clBLAS.h>
+#endif
#include "clblast.h"
#include "internal/utilities.h"
@@ -92,7 +94,7 @@ class Tester {
Queue queue_;
// Whether or not to run the full test-suite or just a smoke test
- bool full_test_;
+ const bool full_test_;
// Retrieves the offset values to test with
const std::vector<size_t> GetOffsets() const;