From 015c331252a3b99c187b5607572f1cec531a4d1e Mon Sep 17 00:00:00 2001 From: karturov Date: Mon, 5 Dec 2011 14:52:21 +0700 Subject: Intel(R) MKL support added. * * * License disclaimer changed to BSD license for MKL_support.h * * * Pardiso support fixed, test added. blas/lapack tests fixed: Scalar parameter was added in Cholesky, product_matrix_vector_triangular remaned to triangular_matrix_vector_product. * * * PARDISO test was added physically. --- Eigen/Cholesky | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Eigen/Cholesky') diff --git a/Eigen/Cholesky b/Eigen/Cholesky index 53f7bf911..7b700c700 100644 --- a/Eigen/Cholesky +++ b/Eigen/Cholesky @@ -24,6 +24,9 @@ namespace Eigen { #include "src/misc/Solve.h" #include "src/Cholesky/LLT.h" #include "src/Cholesky/LDLT.h" +#ifdef EIGEN_MKL +#include "src/Cholesky/LLT_MKL.h" +#endif } // namespace Eigen -- cgit v1.2.3