aboutsummaryrefslogtreecommitdiff
path: root/Eigen/SVD
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/SVD')
-rw-r--r--Eigen/SVD5
1 files changed, 4 insertions, 1 deletions
diff --git a/Eigen/SVD b/Eigen/SVD
index 86143c23d..345179496 100644
--- a/Eigen/SVD
+++ b/Eigen/SVD
@@ -37,11 +37,14 @@
#include "src/SVD/JacobiSVD.h"
#include "src/SVD/BDCSVD.h"
#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
+#ifdef EIGEN_USE_MKL
+#include "mkl_lapacke.h"
+#else
#include "src/misc/lapacke.h"
+#endif
#include "src/SVD/JacobiSVD_LAPACKE.h"
#endif
#include "src/Core/util/ReenableStupidWarnings.h"
#endif // EIGEN_SVD_MODULE_H
-/* vim: set filetype=cpp et sw=2 ts=2 ai: */