|
dune-istl 2.8.0
|
Loading...
Searching...
No Matches
umfpack.hh
Go to the documentation of this file.
154 static void solve(long int m, const long int* cs, const long int* ri, std::complex<double>* val, double* x, const double* b,A... args)
246 static_assert((std::is_same<T,double>::value) || (std::is_same<T,std::complex<double> >::value),
264 static_assert((std::is_same<T,double>::value) || (std::is_same<T,std::complex<double> >::value),
289 static_assert((std::is_same<T,double>::value) || (std::is_same<T,std::complex<double> >::value),
307 static_assert((std::is_same<T,double>::value) || (std::is_same<T,std::complex<double> >::value),
334 static_assert((std::is_same<T,double>::value) || (std::is_same<T,std::complex<double> >::value),
359 DUNE_THROW(Dune::ISTLError, "Size of right-hand-side vector b does not match the number of matrix rows!");
361 DUNE_THROW(Dune::ISTLError, "Size of solution vector x does not match the number of matrix columns!");
387 virtual void apply (domain_type& x, range_type& b, [[maybe_unused]] double reduction, InverseOperatorResult& res)
473 copyToBCCSMatrix(initializer, ISTL::Impl::MatrixRowSubset<Matrix,std::set<std::size_t> >(_mat,rowIndexSet));
562 std::cout << "Wallclock Time taken: " << UMF_Decomposition_Info[UMFPACK_NUMERIC_WALLTIME] << " (CPU Time: " << UMF_Decomposition_Info[UMFPACK_NUMERIC_TIME] << ")" << std::endl;
564 std::cout << "Peak Memory Usage: " << UMF_Decomposition_Info[UMFPACK_PEAK_MEMORY]*UMF_Decomposition_Info[UMFPACK_SIZE_OF_UNIT] << " bytes" << std::endl;
565 std::cout << "Condition number estimate: " << 1./UMF_Decomposition_Info[UMFPACK_RCOND] << std::endl;
566 std::cout << "Numbers of non-zeroes in decomposition: L: " << UMF_Decomposition_Info[UMFPACK_LNZ] << " U: " << UMF_Decomposition_Info[UMFPACK_UNZ] << std::endl;
580 std::cout << "Wallclock Time: " << UMF_Info[UMFPACK_SOLVE_WALLTIME] << " (CPU Time: " << UMF_Info[UMFPACK_SOLVE_TIME] << ")" << std::endl;
609 template<class B> struct isValidBlock<B, std::enable_if_t<std::is_same<typename FieldTraits<B>::real_type,double>::value>> : std::true_type {};
#define DUNE_REGISTER_DIRECT_SOLVER(name,...)
Definition solverregistry.hh:11
Implementation of the BCRSMatrix class.
Templates characterizing the type of a solver.
Implementations of the inverse operator interface.
virtual void apply(domain_type &x, range_type &b, InverseOperatorResult &res)
Apply inverse operator,.
Definition umfpack.hh:356
virtual SolverCategory::Category category() const
Category of the solver (see SolverCategory::Category)
Definition umfpack.hh:230
static void solve(long int m, const long int *cs, const long int *ri, std::complex< double > *val, double *x, const double *b, A... args)
Definition umfpack.hh:154
void setMatrix(const Matrix &matrix)
Initialize data from given matrix.
Definition umfpack.hh:442
static void report_info(A... args)
Definition umfpack.hh:139
UMFPack(const Matrix &mat_, const ParameterTree &config)
Construct a solver object from a matrix.
Definition umfpack.hh:280
static int load_numeric(A... args)
Definition umfpack.hh:129
static int load_numeric(A... args)
Definition umfpack.hh:72
ISTL::Impl::BCCSMatrix< typename Matrix::field_type, long int > UMFPackMatrix
The corresponding UMFPack matrix type.
Definition umfpack.hh:221
static void report_status(A... args)
Definition umfpack.hh:87
UMFPack(const Matrix &mat_, const char *file, int verbose=0)
Try loading a decomposition from file and do a decomposition if unsuccessful.
Definition umfpack.hh:304
typename Impl::UMFPackVectorChooser< M >::range_type range_type
The type of the range of the solver.
Definition umfpack.hh:227
static void symbolic(A... args)
Definition umfpack.hh:102
static void report_info(A... args)
Definition umfpack.hh:82
static void symbolic(long int m, long int n, const long int *cs, const long int *ri, const double *val, A... args)
Definition umfpack.hh:160
static void free_symbolic(A... args)
Definition umfpack.hh:67
static int save_numeric(A... args)
Definition umfpack.hh:149
static void free_numeric(A... args)
Definition umfpack.hh:119
void setSubMatrix(const Matrix &_mat, const S &rowIndexSet)
Definition umfpack.hh:461
static int save_numeric(A... args)
Definition umfpack.hh:92
static void report_status(A... args)
Definition umfpack.hh:144
ISTL::Impl::BCCSMatrixInitializer< M, long int > MatrixInitializer
Type of an associated initializer class.
Definition umfpack.hh:223
void apply(T *x, T *b)
additional apply method with c-arrays in analogy to superlu
Definition umfpack.hh:397
static void defaults(A... args)
Definition umfpack.hh:114
static void free_numeric(A... args)
Definition umfpack.hh:62
void setVerbosity(int v)
sets the verbosity level for the UMFPack solver
Definition umfpack.hh:485
UMFPack(const char *file, int verbose=0)
try loading a decomposition from file
Definition umfpack.hh:331
void saveDecomposition(const char *file)
saves a decomposition to a file
Definition umfpack.hh:434
UMFPackMatrix & getInternalMatrix()
Return the column compress matrix from UMFPack.
Definition umfpack.hh:510
typename Impl::UMFPackVectorChooser< M >::domain_type domain_type
The type of the domain of the solver.
Definition umfpack.hh:225
UMFPack(const Matrix &matrix, int verbose=0)
Construct a solver object from a matrix.
Definition umfpack.hh:243
virtual void apply(domain_type &x, range_type &b, double reduction, InverseOperatorResult &res)
apply inverse operator, with given convergence criteria.
Definition umfpack.hh:387
void setOption(unsigned int option, double value)
Set UMFPack-specific options.
Definition umfpack.hh:423
static void free_symbolic(A... args)
Definition umfpack.hh:124
static void numeric(const long int *cs, const long int *ri, const double *val, A... args)
Definition umfpack.hh:134
static void defaults(A... args)
Definition umfpack.hh:57
UMFPack(const Matrix &matrix, int verbose, bool)
Constructor for compatibility with SuperLU standard constructor.
Definition umfpack.hh:261
void * getFactorization()
Return the matrix factorization.
Definition umfpack.hh:501
STL namespace.
static constexpr size_type M()
virtual void operator()()=0
#define DUNE_THROW(E, m)
Reference get(const RAPropertyMapHelper< Reference, PropertyMap > &pmap, const Key &key)
Definition matrixutils.hh:209
std::string get(const std::string &key, const std::string &defaultValue) const
Sequential overlapping Schwarz preconditioner.
Definition overlappingschwarz.hh:753
Definition overlappingschwarz.hh:692
Statistics about the application of an inverse operator.
Definition solver.hh:46
bool converged
True if convergence criterion has been met.
Definition solver.hh:71
@ sequential
Category for sequential solvers.
Definition solvercategory.hh:23
Definition solverregistry.hh:75
Definition solvertype.hh:14
Definition solvertype.hh:28
@ value
whether the solver internally uses column compressed storage
Definition solvertype.hh:34
Definition umfpack.hh:47
Definition umfpack.hh:607
Definition umfpack.hh:608
T endl(T... args)
Legal Statements / Impressum | Hosted by TU Dresden & Uni Heidelberg | Generated by
1.9.8