Go to the documentation of this file.
32 #ifndef EIGEN_PARDISOSUPPORT_H
33 #define EIGEN_PARDISOSUPPORT_H
38 template<
typename _MatrixType,
int Options=Upper>
class PardisoLLT;
39 template<
typename _MatrixType,
int Options=Upper>
class PardisoLDLT;
43 template<
typename IndexType>
46 static IndexType
run( _MKL_DSS_HANDLE_t pt, IndexType maxfct, IndexType mnum, IndexType type, IndexType phase, IndexType
n,
void *
a,
47 IndexType *ia, IndexType *ja, IndexType *perm, IndexType nrhs, IndexType *iparm, IndexType msglvl,
void *
b,
void *
x)
50 ::pardiso(pt, &maxfct, &mnum, &type, &phase, &
n,
a, ia, ja, perm, &nrhs, iparm, &msglvl,
b,
x, &error);
62 ::pardiso_64(pt, &maxfct, &mnum, &type, &phase, &
n,
a, ia, ja, perm, &nrhs, iparm, &msglvl,
b,
x, &error);
69 template<
typename _MatrixType>
78 template<
typename _MatrixType,
int Options>
87 template<
typename _MatrixType,
int Options>
98 template<
class Derived>
178 template<
typename Rhs,
typename Dest>
186 internal::pardiso_run_selector<StorageIndex>::run(
m_pt, 1, 1,
m_type, -1, internal::convert_index<StorageIndex>(
m_size),0, 0, 0,
m_perm.
data(), 0,
206 m_iparm[10] = symmetric ? 0 : 1;
208 m_iparm[12] = symmetric ? 0 : 1;
258 template<
class Derived>
265 m_perm.setZero(m_size);
266 derived().getMatrix(
a);
270 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
271 m_perm.data(), 0, m_iparm.data(), m_msglvl, NULL, NULL);
272 manageErrorCode(error);
273 m_analysisIsOk =
true;
274 m_factorizationIsOk =
true;
275 m_isInitialized =
true;
279 template<
class Derived>
286 m_perm.setZero(m_size);
287 derived().getMatrix(
a);
291 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
292 m_perm.data(), 0, m_iparm.data(), m_msglvl, NULL, NULL);
294 manageErrorCode(error);
295 m_analysisIsOk =
true;
296 m_factorizationIsOk =
false;
297 m_isInitialized =
true;
301 template<
class Derived>
304 eigen_assert(m_analysisIsOk &&
"You must first call analyzePattern()");
307 derived().getMatrix(
a);
311 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
312 m_perm.data(), 0, m_iparm.data(), m_msglvl, NULL, NULL);
314 manageErrorCode(error);
315 m_factorizationIsOk =
true;
319 template<
class Derived>
320 template<
typename BDerived,
typename XDerived>
350 if(rhs_ptr ==
x.derived().data())
353 rhs_ptr = tmp.
data();
358 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(),
359 m_perm.data(), internal::convert_index<StorageIndex>(nrhs), m_iparm.data(), m_msglvl,
360 rhs_ptr,
x.derived().data());
362 manageErrorCode(error);
383 template<
typename MatrixType>
438 template<
typename MatrixType,
int _UpLo>
439 class PardisoLLT :
public PardisoImpl< PardisoLLT<MatrixType,_UpLo> >
475 m_matrix.template selfadjointView<Upper>() =
matrix.template selfadjointView<UpLo>().twistedBy(p_null);
501 template<
typename MatrixType,
int Options>
502 class PardisoLDLT :
public PardisoImpl< PardisoLDLT<MatrixType,Options> >
536 m_matrix.template selfadjointView<Upper>() =
matrix.template selfadjointView<UpLo>().twistedBy(p_null);
543 #endif // EIGEN_PARDISOSUPPORT_H
Derived & compute(const MatrixType &matrix)
SparseMatrixType m_matrix
Matrix< StorageIndex, 1, MatrixType::ColsAtCompileTime > IntRowVectorType
PardisoLDLT(const MatrixType &matrix)
Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > MatrixType
Traits::StorageIndex StorageIndex
PardisoLLT(const MatrixType &matrix)
void _solve_impl(const SparseMatrixBase< Rhs > &b, SparseMatrixBase< Dest > &dest) const
SparseMatrixType m_matrix
Matrix< StorageIndex, MatrixType::RowsAtCompileTime, 1 > IntColVectorType
Traits::MatrixType MatrixType
void _solve_impl(const MatrixBase< Rhs > &b, MatrixBase< Dest > &dest) const
NumTraits< Scalar >::Real RealScalar
A sparse direct Cholesky (LDLT) factorization and solver based on the PARDISO library.
_MatrixType::RealScalar RealScalar
Base::RealScalar RealScalar
Derived & compute(const MatrixType &matrix)
const unsigned int RowMajorBit
_MatrixType::Scalar Scalar
PardisoImpl< PardisoLU > Base
_MatrixType::Scalar Scalar
void getMatrix(const MatrixType &matrix)
_MatrixType::StorageIndex StorageIndex
void pardisoInit(int type)
static IndexType run(_MKL_DSS_HANDLE_t pt, IndexType maxfct, IndexType mnum, IndexType type, IndexType phase, IndexType n, void *a, IndexType *ia, IndexType *ja, IndexType *perm, IndexType nrhs, IndexType *iparm, IndexType msglvl, void *b, void *x)
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
Derived & analyzePattern(const MatrixType &matrix)
Derived & compute(const MatrixType &matrix)
PardisoLU(const MatrixType &matrix)
Base::StorageIndex StorageIndex
void pardisoInit(int type)
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE AbsReturnType abs() const
void manageErrorCode(Index error) const
Array< StorageIndex, 64, 1, DontAlign > ParameterType
_MatrixType::StorageIndex StorageIndex
void getMatrix(const MatrixType &matrix)
void getMatrix(const MatrixType &matrix)
const Solve< Derived, Rhs > solve(const MatrixBase< Rhs > &b) const
PardisoImpl< PardisoLDLT< MatrixType, Options > > Base
SparseSolverBase< Derived > Base
void pardisoInit(int type)
ComputationInfo info() const
Reports whether previous computation was successful.
Traits::RealScalar RealScalar
Matrix< Scalar, Dynamic, 1 > VectorType
A sparse direct LU factorization and solver based on the PARDISO library.
PardisoImpl< PardisoLLT< MatrixType, _UpLo > > Base
Base::RealScalar RealScalar
A base class for sparse solvers.
SparseMatrixType m_matrix
Base::StorageIndex StorageIndex
_MatrixType::RealScalar RealScalar
internal::pardiso_traits< Derived > Traits
Derived & compute(const MatrixType &matrix)
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar * data() const
_MatrixType::StorageIndex StorageIndex
ParameterType & pardisoParameterArray()
EIGEN_DEVICE_FUNC Derived & setZero(Index size)
Base class for all dense matrices, vectors, and expressions.
SparseMatrix< Scalar, RowMajor, StorageIndex > SparseMatrixType
_MatrixType::RealScalar RealScalar
Base::RealScalar RealScalar
Derived & factorize(const MatrixType &matrix)
_MatrixType::Scalar Scalar
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
void pardisoInit(int type)
A sparse direct Cholesky (LLT) factorization and solver based on the PARDISO library.
SparseMatrixType m_matrix
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
static IndexType run(_MKL_DSS_HANDLE_t pt, IndexType maxfct, IndexType mnum, IndexType type, IndexType phase, IndexType n, void *a, IndexType *ia, IndexType *ja, IndexType *perm, IndexType nrhs, IndexType *iparm, IndexType msglvl, void *b, void *x)
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:02