LLT_LAPACKE.h 3.88 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 Copyright (c) 2011, Intel Corporation. All rights reserved.

 Redistribution and use in source and binary forms, with or without modification,
 are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 * Neither the name of Intel Corporation nor the names of its contributors may
   be used to endorse or promote products derived from this software without
   specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 ********************************************************************************
28
 *   Content : Eigen bindings to LAPACKe
Don Gagne's avatar
Don Gagne committed
29 30 31 32
 *     LLt decomposition based on LAPACKE_?potrf function.
 ********************************************************************************
*/

33 34
#ifndef EIGEN_LLT_LAPACKE_H
#define EIGEN_LLT_LAPACKE_H
Don Gagne's avatar
Don Gagne committed
35 36 37 38 39

namespace Eigen { 

namespace internal {

40
template<typename Scalar> struct lapacke_llt;
Don Gagne's avatar
Don Gagne committed
41

42 43
#define EIGEN_LAPACKE_LLT(EIGTYPE, BLASTYPE, LAPACKE_PREFIX) \
template<> struct lapacke_llt<EIGTYPE> \
Don Gagne's avatar
Don Gagne committed
44 45
{ \
  template<typename MatrixType> \
46
  static inline Index potrf(MatrixType& m, char uplo) \
Don Gagne's avatar
Don Gagne committed
47 48 49 50 51 52
  { \
    lapack_int matrix_order; \
    lapack_int size, lda, info, StorageOrder; \
    EIGTYPE* a; \
    eigen_assert(m.rows()==m.cols()); \
    /* Set up parameters for ?potrf */ \
53
    size = convert_index<lapack_int>(m.rows()); \
Don Gagne's avatar
Don Gagne committed
54 55 56
    StorageOrder = MatrixType::Flags&RowMajorBit?RowMajor:ColMajor; \
    matrix_order = StorageOrder==RowMajor ? LAPACK_ROW_MAJOR : LAPACK_COL_MAJOR; \
    a = &(m.coeffRef(0,0)); \
57
    lda = convert_index<lapack_int>(m.outerStride()); \
Don Gagne's avatar
Don Gagne committed
58
\
59
    info = LAPACKE_##LAPACKE_PREFIX##potrf( matrix_order, uplo, size, (BLASTYPE*)a, lda ); \
60
    info = (info==0) ? -1 : info>0 ? info-1 : size; \
Don Gagne's avatar
Don Gagne committed
61 62 63 64 65 66
    return info; \
  } \
}; \
template<> struct llt_inplace<EIGTYPE, Lower> \
{ \
  template<typename MatrixType> \
67
  static Index blocked(MatrixType& m) \
Don Gagne's avatar
Don Gagne committed
68
  { \
69
    return lapacke_llt<EIGTYPE>::potrf(m, 'L'); \
Don Gagne's avatar
Don Gagne committed
70 71
  } \
  template<typename MatrixType, typename VectorType> \
72
  static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
Don Gagne's avatar
Don Gagne committed
73 74 75 76 77
  { return Eigen::internal::llt_rank_update_lower(mat, vec, sigma); } \
}; \
template<> struct llt_inplace<EIGTYPE, Upper> \
{ \
  template<typename MatrixType> \
78
  static Index blocked(MatrixType& m) \
Don Gagne's avatar
Don Gagne committed
79
  { \
80
    return lapacke_llt<EIGTYPE>::potrf(m, 'U'); \
Don Gagne's avatar
Don Gagne committed
81 82
  } \
  template<typename MatrixType, typename VectorType> \
83
  static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
Don Gagne's avatar
Don Gagne committed
84 85 86 87 88 89
  { \
    Transpose<MatrixType> matt(mat); \
    return llt_inplace<EIGTYPE, Lower>::rankUpdate(matt, vec.conjugate(), sigma); \
  } \
};

90 91 92 93
EIGEN_LAPACKE_LLT(double, double, d)
EIGEN_LAPACKE_LLT(float, float, s)
EIGEN_LAPACKE_LLT(dcomplex, lapack_complex_double, z)
EIGEN_LAPACKE_LLT(scomplex, lapack_complex_float, c)
Don Gagne's avatar
Don Gagne committed
94 95 96 97 98

} // end namespace internal

} // end namespace Eigen

99
#endif // EIGEN_LLT_LAPACKE_H