summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-06-02 17:57:45 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2018-06-02 17:57:45 +0200
commit4f594e39319912f0fbbc145d330ad9e09a66bbee (patch)
tree957ce02f375dbedba46a79e26032d0cec368da2b /test
parent7c3431a72ae091703a7f36999f2b5a0cd8189220 (diff)
Added MKL as an alternative for CBLAS for correctness and performance comparisons
Diffstat (limited to 'test')
-rw-r--r--test/wrapper_cblas.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/wrapper_cblas.hpp b/test/wrapper_cblas.hpp
index 408f084b..a47ff725 100644
--- a/test/wrapper_cblas.hpp
+++ b/test/wrapper_cblas.hpp
@@ -17,7 +17,11 @@
extern "C"
{
- #include <cblas.h>
+ #ifdef CLBLAST_REF_CBLAS_MKL
+ #include <mkl_cblas.h>
+ #else
+ #include <cblas.h>
+ #endif
}
#include "utilities/utilities.hpp"