GEOSX
Public Types | Public Member Functions | List of all members
geos::TrilinosPreconditioner Class Referencefinal

Wrapper around Trilinos-based preconditioners. More...

#include <TrilinosPreconditioner.hpp>

Inheritance diagram for geos::TrilinosPreconditioner:
Inheritance graph
[legend]

Public Types

using Base = PreconditionerBase< TrilinosInterface >
 Alias for base type.
 
using Vector = typename Base::Vector
 Alias for vector type.
 
using Matrix = typename Base::Matrix
 Alias for matrix type.
 
- Public Types inherited from geos::PreconditionerBase< TrilinosInterface >
using Base = LinearOperator< typename TrilinosInterface ::ParallelVector >
 Alias for base type.
 
using Vector = typename Base::Vector
 Alias for vector type.
 
using Matrix = typename TrilinosInterface ::ParallelMatrix
 Alias for matrix type.
 
- Public Types inherited from geos::LinearOperator< TrilinosInterface ::ParallelVector >
using Vector = TrilinosInterface ::ParallelVector
 Alias for template parameter.
 

Public Member Functions

 TrilinosPreconditioner (LinearSolverParameters params)
 Constructor. More...
 
 TrilinosPreconditioner (LinearSolverParameters params, array1d< Vector > const &nearNullKernel)
 Constructor. More...
 
virtual ~TrilinosPreconditioner () override
 Destructor.
 
virtual void setup (Matrix const &mat) override
 Compute the preconditioner from a matrix. More...
 
virtual void apply (Vector const &src, Vector &dst) const override
 Apply operator to a vector. More...
 
virtual void clear () override
 Clean up the preconditioner setup. More...
 
const Epetra_Operator & unwrapped () const
 Access the underlying Epetra preconditioning operator. More...
 
Epetra_Operator & unwrapped ()
 Access the underlying Epetra preconditioning operator. More...
 
- Public Member Functions inherited from geos::PreconditionerBase< TrilinosInterface >
virtual void setup (Matrix const &mat)
 Compute the preconditioner from a matrix. 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...
 
const Matrixmatrix () 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 const MatrixpreconditionerMatrix () 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< TrilinosInterface ::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...
 

Detailed Description

Wrapper around Trilinos-based preconditioners.

Definition at line 36 of file TrilinosPreconditioner.hpp.

Constructor & Destructor Documentation

◆ TrilinosPreconditioner() [1/2]

geos::TrilinosPreconditioner::TrilinosPreconditioner ( LinearSolverParameters  params)
explicit

Constructor.

Parameters
paramspreconditioner parameters

◆ TrilinosPreconditioner() [2/2]

geos::TrilinosPreconditioner::TrilinosPreconditioner ( LinearSolverParameters  params,
array1d< Vector > const &  nearNullKernel 
)

Constructor.

Parameters
paramspreconditioner parameters
nearNullKernelthe user-provided near null kernel

Member Function Documentation

◆ apply()

virtual void geos::TrilinosPreconditioner::apply ( Vector const &  src,
Vector dst 
) const
overridevirtual

Apply operator to a vector.

Parameters
srcInput vector (x).
dstOutput vector (b).
Warning
src and dst cannot alias the same vector.

◆ clear()

virtual void geos::TrilinosPreconditioner::clear ( )
overridevirtual

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).

Note
Should be properly overridden in derived classes, which may call this method.

Reimplemented from geos::PreconditionerBase< TrilinosInterface >.

◆ setup()

virtual void geos::TrilinosPreconditioner::setup ( Matrix const &  mat)
overridevirtual

Compute the preconditioner from a matrix.

Parameters
matthe matrix to precondition.

◆ unwrapped() [1/2]

Epetra_Operator& geos::TrilinosPreconditioner::unwrapped ( )

Access the underlying Epetra preconditioning operator.

Returns
reference to the Epetra operator

◆ unwrapped() [2/2]

const Epetra_Operator& geos::TrilinosPreconditioner::unwrapped ( ) const

Access the underlying Epetra preconditioning operator.

Returns
reference to the Epetra operator

The documentation for this class was generated from the following file: