aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/SVD
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-12-09 10:06:49 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-12-09 10:06:49 +0100
commit43cdd242d0e34aa05e368b3d894c1041aa2cd771 (patch)
treeb9f068f145a293fe0833208aa8185a6f632ac7a0 /Eigen/SVD
parent015c331252a3b99c187b5607572f1cec531a4d1e (diff)
- split and rename defined tokens to enable the use of BLAS/Lapack/VML/etc
- include MKL headers outside the Eigen namespace.
Diffstat (limited to 'Eigen/SVD')
-rw-r--r--Eigen/SVD2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/SVD b/Eigen/SVD
index 5b41d4e83..add72aba5 100644
--- a/Eigen/SVD
+++ b/Eigen/SVD
@@ -24,7 +24,7 @@ namespace Eigen {
#include "src/misc/Solve.h"
#include "src/SVD/JacobiSVD.h"
-#ifdef EIGEN_MKL
+#if defined(EIGEN_ALLOW_JACOBISVD_USE_LAPACKSVD) && defined(EIGEN_USE_MKL_CLAPACK)
#include "src/SVD/JacobiSVD_MKL.h"
#endif
#include "src/SVD/UpperBidiagonalization.h"