RealSchur_LAPACKE.h
Go to the documentation of this file.
1 /*
2  Copyright (c) 2011, Intel Corporation. All rights reserved.
3 
4  Redistribution and use in source and binary forms, with or without modification,
5  are permitted provided that the following conditions are met:
6 
7  * Redistributions of source code must retain the above copyright notice, this
8  list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright notice,
10  this list of conditions and the following disclaimer in the documentation
11  and/or other materials provided with the distribution.
12  * Neither the name of Intel Corporation nor the names of its contributors may
13  be used to endorse or promote products derived from this software without
14  specific prior written permission.
15 
16  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
20  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
23  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 
27  ********************************************************************************
28  * Content : Eigen bindings to LAPACKe
29  * Real Schur needed to real unsymmetrical eigenvalues/eigenvectors.
30  ********************************************************************************
31 */
32 
33 #ifndef EIGEN_REAL_SCHUR_LAPACKE_H
34 #define EIGEN_REAL_SCHUR_LAPACKE_H
35 
36 namespace Eigen {
37 
40 #define EIGEN_LAPACKE_SCHUR_REAL(EIGTYPE, LAPACKE_TYPE, LAPACKE_PREFIX, LAPACKE_PREFIX_U, EIGCOLROW, LAPACKE_COLROW) \
41 template<> template<typename InputType> inline \
42 RealSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >& \
43 RealSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, bool computeU) \
44 { \
45  eigen_assert(matrix.cols() == matrix.rows()); \
46 \
47  lapack_int n = internal::convert_index<lapack_int>(matrix.cols()), sdim, info; \
48  lapack_int matrix_order = LAPACKE_COLROW; \
49  char jobvs, sort='N'; \
50  LAPACK_##LAPACKE_PREFIX_U##_SELECT2 select = 0; \
51  jobvs = (computeU) ? 'V' : 'N'; \
52  m_matU.resize(n, n); \
53  lapack_int ldvs = internal::convert_index<lapack_int>(m_matU.outerStride()); \
54  m_matT = matrix; \
55  lapack_int lda = internal::convert_index<lapack_int>(m_matT.outerStride()); \
56  Matrix<EIGTYPE, Dynamic, Dynamic> wr, wi; \
57  wr.resize(n, 1); wi.resize(n, 1); \
58  info = LAPACKE_##LAPACKE_PREFIX##gees( matrix_order, jobvs, sort, select, n, (LAPACKE_TYPE*)m_matT.data(), lda, &sdim, (LAPACKE_TYPE*)wr.data(), (LAPACKE_TYPE*)wi.data(), (LAPACKE_TYPE*)m_matU.data(), ldvs ); \
59  if(info == 0) \
60  m_info = Success; \
61  else \
62  m_info = NoConvergence; \
63 \
64  m_isInitialized = true; \
65  m_matUisUptodate = computeU; \
66  return *this; \
67 \
68 }
69 
73 EIGEN_LAPACKE_SCHUR_REAL(float, float, s, S, RowMajor, LAPACK_ROW_MAJOR)
74 
75 } // end namespace Eigen
76 
77 #endif // EIGEN_REAL_SCHUR_LAPACKE_H
#define LAPACK_COL_MAJOR
Definition: lapacke.h:122
Definition: LDLT.h:16
#define EIGEN_LAPACKE_SCHUR_REAL(EIGTYPE, LAPACKE_TYPE, LAPACKE_PREFIX, LAPACKE_PREFIX_U, EIGCOLROW, LAPACKE_COLROW)
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:121


hebiros
Author(s): Xavier Artache , Matthew Tesch
autogenerated on Thu Sep 3 2020 04:08:43