summaryrefslogtreecommitdiff
path: root/test/wrapper_cblas.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/wrapper_cblas.hpp')
-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"