Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef EIGEN_LLT_MKL_H
00034 #define EIGEN_LLT_MKL_H
00035
00036 #include "Eigen/src/Core/util/MKL_support.h"
00037 #include <iostream>
00038
00039 namespace Eigen {
00040
00041 namespace internal {
00042
00043 template<typename Scalar> struct mkl_llt;
00044
00045 #define EIGEN_MKL_LLT(EIGTYPE, MKLTYPE, MKLPREFIX) \
00046 template<> struct mkl_llt<EIGTYPE> \
00047 { \
00048 template<typename MatrixType> \
00049 static inline typename MatrixType::Index potrf(MatrixType& m, char uplo) \
00050 { \
00051 lapack_int matrix_order; \
00052 lapack_int size, lda, info, StorageOrder; \
00053 EIGTYPE* a; \
00054 eigen_assert(m.rows()==m.cols()); \
00055 \
00056 size = m.rows(); \
00057 StorageOrder = MatrixType::Flags&RowMajorBit?RowMajor:ColMajor; \
00058 matrix_order = StorageOrder==RowMajor ? LAPACK_ROW_MAJOR : LAPACK_COL_MAJOR; \
00059 a = &(m.coeffRef(0,0)); \
00060 lda = m.outerStride(); \
00061 \
00062 info = LAPACKE_##MKLPREFIX##potrf( matrix_order, uplo, size, (MKLTYPE*)a, lda ); \
00063 info = (info==0) ? Success : NumericalIssue; \
00064 return info; \
00065 } \
00066 }; \
00067 template<> struct llt_inplace<EIGTYPE, Lower> \
00068 { \
00069 template<typename MatrixType> \
00070 static typename MatrixType::Index blocked(MatrixType& m) \
00071 { \
00072 return mkl_llt<EIGTYPE>::potrf(m, 'L'); \
00073 } \
00074 template<typename MatrixType, typename VectorType> \
00075 static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
00076 { return Eigen::internal::llt_rank_update_lower(mat, vec, sigma); } \
00077 }; \
00078 template<> struct llt_inplace<EIGTYPE, Upper> \
00079 { \
00080 template<typename MatrixType> \
00081 static typename MatrixType::Index blocked(MatrixType& m) \
00082 { \
00083 return mkl_llt<EIGTYPE>::potrf(m, 'U'); \
00084 } \
00085 template<typename MatrixType, typename VectorType> \
00086 static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
00087 { \
00088 Transpose<MatrixType> matt(mat); \
00089 return llt_inplace<EIGTYPE, Lower>::rankUpdate(matt, vec.conjugate(), sigma); \
00090 } \
00091 };
00092
00093 EIGEN_MKL_LLT(double, double, d)
00094 EIGEN_MKL_LLT(float, float, s)
00095 EIGEN_MKL_LLT(dcomplex, MKL_Complex16, z)
00096 EIGEN_MKL_LLT(scomplex, MKL_Complex8, c)
00097
00098 }
00099
00100 }
00101
00102 #endif // EIGEN_LLT_MKL_H