GEOS
|
Common interface for preconditioning operators. More...
#include <PreconditionerBase.hpp>
Public Types | |
using | Base = LinearOperator< typename LAI::ParallelVector > |
Alias for base type. | |
using | Vector = typename Base::Vector |
Alias for vector type. | |
using | Matrix = typename LAI::ParallelMatrix |
Alias for matrix type. | |
Public Types inherited from geos::LinearOperator< LAI::ParallelVector > | |
using | Vector = LAI::ParallelVector |
Alias for template parameter. | |
Public Member Functions | |
virtual void | setup (Matrix const &mat) |
Compute the preconditioner from a matrix. More... | |
virtual void | clear () |
Clean up the preconditioner setup. More... | |
virtual globalIndex | numGlobalRows () const override |
Get the number of global rows. More... | |
virtual globalIndex | numGlobalCols () const override |
Get the number of global columns. More... | |
virtual localIndex | numLocalRows () const override |
Get the number of local rows. More... | |
virtual localIndex | numLocalCols () const override |
Get the number of local columns. More... | |
virtual MPI_Comm | comm () const override |
Get the MPI communicator the matrix was created with. More... | |
bool | ready () const |
Chech if preconditioner is ready to use. More... | |
Matrix const & | matrix () const |
Access the matrix the preconditioner was computed from. More... | |
virtual bool | hasPreconditionerMatrix () const |
Check whether the preconditioner is available in matrix (explicit) form. More... | |
virtual Matrix const & | preconditionerMatrix () const |
Access the preconditioner in matrix form (whenever available). It must be overridden by the specific preconditioner. More... | |
Public Member Functions inherited from geos::LinearOperator< LAI::ParallelVector > | |
LinearOperator ()=default | |
Constructor. | |
virtual | ~LinearOperator ()=default |
Destructor. | |
virtual void | apply (Vector const &src, Vector &dst) const=0 |
Apply operator to a vector, dst = this(src) . More... | |
virtual void | residual (Vector const &x, Vector const &b, Vector &r) const |
Compute residual r = b - this(x) . More... | |
Common interface for preconditioning operators.
LAI | linear algebra interface providing vectors, matrices and solvers |
Definition at line 32 of file PreconditionerBase.hpp.
|
inlinevirtual |
Clean up the preconditioner setup.
Releases memory used and allows the matrix to be deleted cleanly. This method should be called before the matrix used to compute the preconditioner goes out of scope or is re-created. Some implementations require the matrix to outlive the preconditioner (for example, Trilinos/ML may crash the program if deleted after the matrix).
Reimplemented in geos::SeparateComponentPreconditioner< LAI >, geos::PreconditionerJacobi< LAI >, geos::PreconditionerBlockJacobi< LAI >, geos::BlockPreconditioner< LAI >, geos::TrilinosPreconditioner, geos::PetscSolver, geos::PetscPreconditioner, geos::HypreSolver, geos::HyprePreconditioner, geos::SuperLUDist< LAI >, and geos::SuiteSparse< LAI >.
Definition at line 71 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the MPI communicator the matrix was created with.
create
...()Implements geos::LinearOperator< LAI::ParallelVector >.
Definition at line 119 of file PreconditionerBase.hpp.
|
inlinevirtual |
Check whether the preconditioner is available in matrix (explicit) form.
Reimplemented in geos::SeparateComponentPreconditioner< LAI >, and geos::PreconditionerBlockJacobi< LAI >.
Definition at line 147 of file PreconditionerBase.hpp.
|
inline |
Access the matrix the preconditioner was computed from.
Definition at line 137 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the number of global columns.
Implements geos::LinearOperator< LAI::ParallelVector >.
Reimplemented in geos::PreconditionerJacobi< LAI >.
Definition at line 89 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the number of global rows.
Implements geos::LinearOperator< LAI::ParallelVector >.
Reimplemented in geos::PreconditionerJacobi< LAI >.
Definition at line 80 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the number of local columns.
Implements geos::LinearOperator< LAI::ParallelVector >.
Definition at line 107 of file PreconditionerBase.hpp.
|
inlineoverridevirtual |
Get the number of local rows.
Implements geos::LinearOperator< LAI::ParallelVector >.
Definition at line 98 of file PreconditionerBase.hpp.
|
inlinevirtual |
Access the preconditioner in matrix form (whenever available). It must be overridden by the specific preconditioner.
Reimplemented in geos::SeparateComponentPreconditioner< LAI >, and geos::PreconditionerBlockJacobi< LAI >.
Definition at line 157 of file PreconditionerBase.hpp.
|
inline |
Chech if preconditioner is ready to use.
true
if compute() has been called but not clear(). Definition at line 128 of file PreconditionerBase.hpp.
|
inlinevirtual |
Compute the preconditioner from a matrix.
mat | the matrix to precondition. |
Reimplemented in geos::SeparateComponentPreconditioner< LAI >, geos::PreconditionerJacobi< LAI >, geos::PreconditionerBlockJacobi< LAI >, geos::TrilinosPreconditioner, geos::PetscPreconditioner, geos::HyprePreconditioner, geos::SuperLUDist< LAI >, and geos::SuiteSparse< LAI >.
Definition at line 53 of file PreconditionerBase.hpp.