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

Wrapper around hypre-based preconditioners. More...

#include <HyprePreconditioner.hpp>

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

Public Types

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

Public Member Functions

 HyprePreconditioner (LinearSolverParameters params)
 Constructor. More...
 
 HyprePreconditioner (LinearSolverParameters params, arrayView1d< HypreVector > const &nearNullKernel)
 Constructor. More...
 
virtual ~HyprePreconditioner () 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 HyprePrecWrapperunwrapped () const
 Access the underlying implementation. More...
 
real64 componentFilterTime () const
 
real64 makeRestrictorTime () const
 
real64 computeAuuTime () const
 
- Public Member Functions inherited from geos::PreconditionerBase< HypreInterface >
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< HypreInterface ::ParallelVector >
 LinearOperator ()=default
 Constructor.
 
virtual ~LinearOperator ()=default
 Destructor.
 
virtual void residual (Vector const &x, Vector const &b, Vector &r) const
 Compute residual r = b - this(x). More...
 

Detailed Description

Wrapper around hypre-based preconditioners.

Definition at line 43 of file HyprePreconditioner.hpp.

Constructor & Destructor Documentation

◆ HyprePreconditioner() [1/2]

geos::HyprePreconditioner::HyprePreconditioner ( LinearSolverParameters  params)
explicit

Constructor.

Parameters
paramspreconditioner parameters

◆ HyprePreconditioner() [2/2]

geos::HyprePreconditioner::HyprePreconditioner ( LinearSolverParameters  params,
arrayView1d< HypreVector > const &  nearNullKernel 
)

Constructor.

Parameters
paramspreconditioner parameters
nearNullKernelthe user-provided near null kernel

Member Function Documentation

◆ apply()

virtual void geos::HyprePreconditioner::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.

Implements geos::LinearOperator< HypreInterface ::ParallelVector >.

◆ clear()

virtual void geos::HyprePreconditioner::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< HypreInterface >.

◆ componentFilterTime()

real64 geos::HyprePreconditioner::componentFilterTime ( ) const
inline
Returns
time spent setting up separate component matrix.

Definition at line 100 of file HyprePreconditioner.hpp.

◆ computeAuuTime()

real64 geos::HyprePreconditioner::computeAuuTime ( ) const
inline
Returns
time to apply restrictor matrix.

Definition at line 112 of file HyprePreconditioner.hpp.

◆ makeRestrictorTime()

real64 geos::HyprePreconditioner::makeRestrictorTime ( ) const
inline
Returns
time to construct restrictor matrix.

Definition at line 106 of file HyprePreconditioner.hpp.

◆ setup()

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

Compute the preconditioner from a matrix.

Parameters
matthe matrix to precondition.

Reimplemented from geos::PreconditionerBase< HypreInterface >.

◆ unwrapped()

const HyprePrecWrapper& geos::HyprePreconditioner::unwrapped ( ) const

Access the underlying implementation.

Returns
reference to container of preconditioner functions.

Intended for use by HypreSolver.


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