5 #ifndef DUNE_ISTL_LDL_HH 6 #define DUNE_ISTL_LDL_HH 8 #if HAVE_SUITESPARSE_LDL || defined DOXYGEN 12 #include <type_traits> 22 #include <dune/common/exceptions.hh> 42 template<
class M,
class T,
class TM,
class TD,
class TA>
45 template<
class T,
bool tag>
54 template<
class Matrix>
71 template<
typename T,
typename A,
int n,
int m>
73 :
public InverseOperator<BlockVector<FieldVector<T,m>, typename std::allocator_traits<A>::template rebind_alloc<FieldVector<T,m> > >,
74 BlockVector<FieldVector<T,n>, typename std::allocator_traits<A>::template rebind_alloc<FieldVector<T,n> > > >
81 typedef Dune::ISTL::Impl::BCCSMatrix<T,int>
LDLMatrix;
83 typedef ISTL::Impl::BCCSMatrixInitializer<BCRSMatrix<FieldMatrix<T,n,m>,A>,
int>
MatrixInitializer;
92 return SolverCategory::Category::sequential;
104 LDL(
const Matrix& matrix,
int verbose=0) : matrixIsLoaded_(false), verbose_(verbose)
107 static_assert(std::is_same<T,double>::value,
"Unsupported Type in LDL (only double supported)");
120 LDL(
const Matrix& matrix,
int verbose,
bool) : matrixIsLoaded_(false), verbose_(verbose)
123 static_assert(std::is_same<T,double>::value,
"Unsupported Type in LDL (only double supported)");
137 :
LDL(matrix, config.
get<int>(
"verbose", 0))
141 LDL() : matrixIsLoaded_(false), verbose_(0)
147 if ((ldlMatrix_.N() + ldlMatrix_.M() > 0) || matrixIsLoaded_)
154 const int dimMat(ldlMatrix_.N());
155 ldl_perm(dimMat, Y_, reinterpret_cast<double*>(&b[0]), P_);
156 ldl_lsolve(dimMat, Y_, Lp_, Li_, Lx_);
157 ldl_dsolve(dimMat, Y_, D_);
158 ldl_ltsolve(dimMat, Y_, Lp_, Li_, Lx_);
159 ldl_permt(dimMat, reinterpret_cast<double*>(&x[0]), Y_, P_);
178 const int dimMat(ldlMatrix_.N());
179 ldl_perm(dimMat, Y_, b, P_);
180 ldl_lsolve(dimMat, Y_, Lp_, Li_, Lx_);
181 ldl_dsolve(dimMat, Y_, D_);
182 ldl_ltsolve(dimMat, Y_, Lp_, Li_, Lx_);
183 ldl_permt(dimMat, x, Y_, P_);
186 void setOption([[maybe_unused]]
unsigned int option, [[maybe_unused]]
double value)
192 if ((ldlMatrix_.N() + ldlMatrix_.M() > 0) || matrixIsLoaded_)
195 if (ldlMatrix_.N() + ldlMatrix_.M() + ldlMatrix_.nonzeroes() != 0)
199 ISTL::Impl::BCCSMatrixInitializer<Matrix, int> initializer(ldlMatrix_);
201 copyToBCCSMatrix(initializer, matrix);
209 if ((ldlMatrix_.N() + ldlMatrix_.M() > 0) || matrixIsLoaded_)
212 if (ldlMatrix_.N() + ldlMatrix_.M() + ldlMatrix_.nonzeroes() != 0)
217 ISTL::Impl::BCCSMatrixInitializer<Matrix, int> initializer(ldlMatrix_);
219 copyToBCCSMatrix(initializer, ISTL::Impl::MatrixRowSubset<
Matrix,std::set<std::size_t> >(matrix,rowIndexSet));
256 matrixIsLoaded_ =
false;
302 template<
class M,
class X,
class TM,
class TD,
class T1>
311 const int dimMat(ldlMatrix_.N());
312 D_ =
new double [dimMat];
313 Y_ =
new double [dimMat];
314 Lp_ =
new int [dimMat + 1];
315 Parent_ =
new int [dimMat];
316 Lnz_ =
new int [dimMat];
317 Flag_ =
new int [dimMat];
318 Pattern_ =
new int [dimMat];
319 P_ =
new int [dimMat];
320 Pinv_ =
new int [dimMat];
322 double Info [AMD_INFO];
323 if(amd_order (dimMat, ldlMatrix_.getColStart(), ldlMatrix_.getRowIndex(), P_, (
double *) NULL, Info) < AMD_OK)
324 DUNE_THROW(InvalidStateException,
"Error: AMD failed!");
328 ldl_symbolic(dimMat, ldlMatrix_.getColStart(), ldlMatrix_.getRowIndex(), Lp_, Parent_, Lnz_, Flag_, P_, Pinv_);
330 Lx_ =
new double [Lp_[dimMat]];
331 Li_ =
new int [Lp_[dimMat]];
333 const int rank(ldl_numeric(dimMat, ldlMatrix_.getColStart(), ldlMatrix_.getRowIndex(), ldlMatrix_.getValues(),
334 Lp_, Parent_, Lnz_, Li_, Lx_, D_, Y_, Pattern_, Flag_, P_, Pinv_));
342 DUNE_THROW(InvalidStateException,
"Error: LDL factorisation failed!");
345 LDLMatrix ldlMatrix_;
346 bool matrixIsLoaded_;
361 template<
typename T,
typename A,
int n,
int m>
367 template<
typename T,
typename A,
int n,
int m>
374 [](
auto opTraits,
const auto& op,
const Dune::ParameterTree& config)
375 -> std::shared_ptr<
typename decltype(opTraits)::solver_type>
377 using OpTraits = decltype(opTraits);
378 using M =
typename OpTraits::matrix_type;
380 if constexpr (OpTraits::isParallel){
381 if(opTraits.getCommOrThrow(op).communicator().size() > 1)
382 DUNE_THROW(Dune::InvalidStateException,
"LDL works only for sequential operators.");
387 if constexpr (std::is_convertible_v<LDL<M>*,
389 typename OpTraits::range_type>*> &&
390 std::is_same_v<
typename FieldTraits<M>::field_type,
double>
392 const auto& A = opTraits.getAssembledOpOrThrow(op);
393 const M&
mat = A->getmat();
394 int verbose = config.get(
"verbose", 0);
395 return std::make_shared<LDL<M>>(
mat,verbose);
397 DUNE_THROW(UnsupportedType,
398 "Unsupported Type in LDL (only FieldMatrix<double,...> supported)");
404 #endif //HAVE_SUITESPARSE_LDL 405 #endif //DUNE_ISTL_LDL_HH void setVerbosity(int v)
Sets the verbosity level for the solver.
Definition: ldl.hh:228
int * getLi()
Get factorization Li.
Definition: ldl.hh:287
void apply(T *x, T *b)
Additional apply method with c-arrays in analogy to superlu.
Definition: ldl.hh:176
void apply(domain_type &x, range_type &b, InverseOperatorResult &res) override
Apply inverse operator,.
Definition: ldl.hh:152
void setMatrix(const Matrix &matrix)
Initialize data from given matrix.
Definition: ldl.hh:190
const char * name()
Get method name.
Definition: ldl.hh:260
Matrix & mat
Definition: matrixmatrix.hh:347
void setSubMatrix(const Matrix &matrix, const S &rowIndexSet)
Definition: ldl.hh:207
int * getLp()
Get factorization Lp.
Definition: ldl.hh:278
A sparse block matrix with compressed row storage.
Definition: bcrsmatrix.hh:466
whether the solver internally uses column compressed storage
Definition: solvertype.hh:36
Dune::BlockVector< FieldVector< T, n >, typename std::allocator_traits< A >::template rebind_alloc< FieldVector< T, n > > > range_type
The type of the range of the solver.
Definition: ldl.hh:87
Sequential overlapping Schwarz preconditioner.
Definition: ldl.hh:43
Statistics about the application of an inverse operator.
Definition: solver.hh:49
double * getD()
Get factorization diagonal matrix D.
Definition: ldl.hh:269
void setOption([[maybe_unused]] unsigned int option, [[maybe_unused]] double value)
Definition: ldl.hh:186
Dune::ISTL::Impl::BCCSMatrix< T, int > LDLMatrix
The corresponding SuperLU Matrix type.
Definition: ldl.hh:81
size_type N() const
number of rows (counted in blocks)
Definition: bcrsmatrix.hh:2004
Use the LDL package to directly solve linear systems – empty default class.
Definition: ldl.hh:55
static auto coldim(const M &)
Definition: matrixutils.hh:219
Definition: solvertype.hh:29
void apply(domain_type &x, range_type &b, [[maybe_unused]] double reduction, InverseOperatorResult &res) override
apply inverse operator, with given convergence criteria.
Definition: ldl.hh:166
Definition: matrixutils.hh:27
Implementations of the inverse operator interface.
LDL()
Default constructor.
Definition: ldl.hh:141
Templates characterizing the type of a solver.
LDLMatrix & getInternalMatrix()
Return the column compress matrix.
Definition: ldl.hh:237
LDL(const Matrix &matrix, int verbose, bool)
Constructor for compatibility with SuperLU standard constructor.
Definition: ldl.hh:120
DUNE_REGISTER_SOLVER("cholmod", [](auto opTraits, const auto &op, const Dune::ParameterTree &config) -> std::shared_ptr< typename decltype(opTraits)::solver_type > { using OpTraits=decltype(opTraits);using M=typename OpTraits::matrix_type;using D=typename OpTraits::domain_type;if constexpr(OpTraits::isParallel){ if(opTraits.getCommOrThrow(op).communicator().size() > 1) DUNE_THROW(Dune::InvalidStateException, "CholMod works only for sequential operators.");} if constexpr(OpTraits::isAssembled &&(std::is_same_v< typename FieldTraits< D >::field_type, double >||std::is_same_v< typename FieldTraits< D >::field_type, float >)){ const auto &A=opTraits.getAssembledOpOrThrow(op);const M &mat=A->getmat();auto solver=std::make_shared< Dune::Cholmod< D >>();solver->setMatrix(mat);return solver;} DUNE_THROW(UnsupportedType, "Unsupported Type in Cholmod (only double and float supported)");})
ISTL::Impl::BCCSMatrixInitializer< BCRSMatrix< FieldMatrix< T, n, m >, A >, int > MatrixInitializer
Type of an associated initializer class.
Definition: ldl.hh:83
int iterations
Number of iterations.
Definition: solver.hh:69
virtual ~LDL()
Default constructor.
Definition: ldl.hh:145
static auto rowdim(const M &)
Definition: matrixutils.hh:214
SolverCategory::Category category() const override
Category of the solver (see SolverCategory::Category)
Definition: ldl.hh:90
LDL(const Matrix &matrix, int verbose=0)
Construct a solver object from a BCRSMatrix.
Definition: ldl.hh:104
bool converged
True if convergence criterion has been met.
Definition: solver.hh:75
void free()
Free allocated space.
Definition: ldl.hh:246
Definition: bcrsmatrix.hh:78
LDL(const Matrix &matrix, const ParameterTree &config)
Constructs the LDL solver.
Definition: ldl.hh:136
Whether this is a direct solver.
Definition: solvertype.hh:24
Category
Definition: solvercategory.hh:23
size_type M() const
number of columns (counted in blocks)
Definition: bcrsmatrix.hh:2010
Definition: allocator.hh:11
A vector of blocks with memory management.
Definition: bvector.hh:391
Dune::BlockVector< FieldVector< T, m >, typename std::allocator_traits< A >::template rebind_alloc< FieldVector< T, m > > > domain_type
The type of the domain of the solver.
Definition: ldl.hh:85
Abstract base class for all solvers.
Definition: solver.hh:101
Definition: solvertype.hh:15
PropertyMapTypeSelector< Amg::VertexVisitedTag, Amg::PropertiesGraph< G, Amg::VertexProperties, EP, VM, EM > >::Type get([[maybe_unused]] const Amg::VertexVisitedTag &tag, Amg::PropertiesGraph< G, Amg::VertexProperties, EP, VM, EM > &graph)
Definition: dependency.hh:293
double * getLx()
Get factorization Lx.
Definition: ldl.hh:296