summaryrefslogtreecommitdiff
path: root/test/wrapper_cblas.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-06-03 15:53:27 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2018-06-03 15:53:27 +0200
commit1c9a74147073234da953b84f0bbafefbcf5ffb4f (patch)
treeb29bae73160430bad665b6a947b0de9e2f6cdd46 /test/wrapper_cblas.hpp
parent838422fbb1a8fa7ce2cad06bb94b2779d3929e08 (diff)
parent4471b67735fecc8089df638cc06c2d5bd3cd3d2c (diff)
Merge branch 'master' into CLBlast-267-convgemm
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"