Skip to content
LLT_LAPACKE.h 3.88 KiB
Newer Older
Luker's avatar
Luker committed
/*
 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.

 ********************************************************************************
Luker's avatar
Luker committed
 *   Content : Eigen bindings to LAPACKe
Luker's avatar
Luker committed
 *     LLt decomposition based on LAPACKE_?potrf function.
 ********************************************************************************
*/

Luker's avatar
Luker committed
#ifndef EIGEN_LLT_LAPACKE_H
#define EIGEN_LLT_LAPACKE_H
Luker's avatar
Luker committed

namespace Eigen { 

namespace internal {

Luker's avatar
Luker committed
template<typename Scalar> struct lapacke_llt;
Luker's avatar
Luker committed

Luker's avatar
Luker committed
#define EIGEN_LAPACKE_LLT(EIGTYPE, BLASTYPE, LAPACKE_PREFIX) \
template<> struct lapacke_llt<EIGTYPE> \
Luker's avatar
Luker committed
{ \
  template<typename MatrixType> \
Luker's avatar
Luker committed
  static inline Index potrf(MatrixType& m, char uplo) \
Luker's avatar
Luker committed
  { \
    lapack_int matrix_order; \
    lapack_int size, lda, info, StorageOrder; \
    EIGTYPE* a; \
    eigen_assert(m.rows()==m.cols()); \
    /* Set up parameters for ?potrf */ \
Luker's avatar
Luker committed
    size = convert_index<lapack_int>(m.rows()); \
Luker's avatar
Luker committed
    StorageOrder = MatrixType::Flags&RowMajorBit?RowMajor:ColMajor; \
    matrix_order = StorageOrder==RowMajor ? LAPACK_ROW_MAJOR : LAPACK_COL_MAJOR; \
    a = &(m.coeffRef(0,0)); \
Luker's avatar
Luker committed
    lda = convert_index<lapack_int>(m.outerStride()); \
Luker's avatar
Luker committed
\
Luker's avatar
Luker committed
    info = LAPACKE_##LAPACKE_PREFIX##potrf( matrix_order, uplo, size, (BLASTYPE*)a, lda ); \
Luker's avatar
Luker committed
    info = (info==0) ? -1 : info>0 ? info-1 : size; \
    return info; \
  } \
}; \
template<> struct llt_inplace<EIGTYPE, Lower> \
{ \
  template<typename MatrixType> \
Luker's avatar
Luker committed
  static Index blocked(MatrixType& m) \
Luker's avatar
Luker committed
  { \
Luker's avatar
Luker committed
    return lapacke_llt<EIGTYPE>::potrf(m, 'L'); \
Luker's avatar
Luker committed
  } \
  template<typename MatrixType, typename VectorType> \
Luker's avatar
Luker committed
  static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
Luker's avatar
Luker committed
  { return Eigen::internal::llt_rank_update_lower(mat, vec, sigma); } \
}; \
template<> struct llt_inplace<EIGTYPE, Upper> \
{ \
  template<typename MatrixType> \
Luker's avatar
Luker committed
  static Index blocked(MatrixType& m) \
Luker's avatar
Luker committed
  { \
Luker's avatar
Luker committed
    return lapacke_llt<EIGTYPE>::potrf(m, 'U'); \
Luker's avatar
Luker committed
  } \
  template<typename MatrixType, typename VectorType> \
Luker's avatar
Luker committed
  static Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \
Luker's avatar
Luker committed
  { \
    Transpose<MatrixType> matt(mat); \
    return llt_inplace<EIGTYPE, Lower>::rankUpdate(matt, vec.conjugate(), sigma); \
  } \
};

Luker's avatar
Luker committed
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)
Luker's avatar
Luker committed

} // end namespace internal

} // end namespace Eigen

Luker's avatar
Luker committed
#endif // EIGEN_LLT_LAPACKE_H