|
Ifpack2 Templated Preconditioning Package
Version 1.0
|
Wrapper for Hiptmair smoothers. More...
#include <Ifpack2_Hiptmair_decl.hpp>

Public Types | |
| typedef MatrixType::scalar_type | scalar_type |
| The type of the entries of the input MatrixType. More... | |
| typedef MatrixType::local_ordinal_type | local_ordinal_type |
| The type of local indices in the input MatrixType. More... | |
| typedef MatrixType::global_ordinal_type | global_ordinal_type |
| The type of global indices in the input MatrixType. More... | |
| typedef MatrixType::node_type | node_type |
| The Node type used by the input MatrixType. More... | |
| typedef Teuchos::ScalarTraits< scalar_type >::magnitudeType | magnitude_type |
| The type of the magnitude (absolute value) of a matrix entry. More... | |
| typedef Tpetra::RowMatrix< scalar_type, local_ordinal_type, global_ordinal_type, node_type > | row_matrix_type |
| Type of the Tpetra::RowMatrix specialization that this class uses. More... | |
| typedef Ifpack2::Preconditioner< scalar_type, local_ordinal_type, global_ordinal_type, node_type > | prec_type |
| Type of the Ifpack2::Preconditioner specialization from which this class inherits. More... | |
Public Types inherited from Ifpack2::Preconditioner< MatrixType::scalar_type, MatrixType::local_ordinal_type, MatrixType::global_ordinal_type, MatrixType::node_type > | |
| typedef Teuchos::ScalarTraits< MatrixType::scalar_type >::magnitudeType | magnitude_type |
| The type of the magnitude (absolute value) of a matrix entry. More... | |
Public Member Functions | |
| Hiptmair (const Teuchos::RCP< const row_matrix_type > &A, const Teuchos::RCP< const row_matrix_type > &PtAP, const Teuchos::RCP< const row_matrix_type > &P) | |
| Constructor that takes 3 Tpetra matrices. More... | |
| virtual | ~Hiptmair () |
| Destructor. More... | |
Methods for setting parameters and initialization | |
| void | setParameters (const Teuchos::ParameterList ¶ms) |
| Set the preconditioner's parameters. More... | |
| void | initialize () |
| Do any initialization that depends on the input matrix's structure. More... | |
| bool | isInitialized () const |
Return true if initialize() completed successfully, else false. More... | |
| void | compute () |
| Do any initialization that depends on the input matrix's values. More... | |
| bool | isComputed () const |
Return true if compute() completed successfully, else false. More... | |
Implementation of Tpetra::Operator | |
| void | apply (const Tpetra::MultiVector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > &X, Tpetra::MultiVector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, scalar_type alpha=Teuchos::ScalarTraits< scalar_type >::one(), scalar_type beta=Teuchos::ScalarTraits< scalar_type >::zero()) const |
| Apply the preconditioner to X, putting the result in Y. More... | |
| void | applyHiptmairSmoother (const Tpetra::MultiVector< typename MatrixType::scalar_type, typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > &X, Tpetra::MultiVector< typename MatrixType::scalar_type, typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > &Y) const |
| Teuchos::RCP< const Tpetra::Map< local_ordinal_type, global_ordinal_type, node_type > > | getDomainMap () const |
| Tpetra::Map representing the domain of this operator. More... | |
| Teuchos::RCP< const Tpetra::Map< local_ordinal_type, global_ordinal_type, node_type > > | getRangeMap () const |
| Tpetra::Map representing the range of this operator. More... | |
| bool | hasTransposeApply () const |
| Whether this object's apply() method can apply the transpose (or conjugate transpose, if applicable). More... | |
Mathematical functions. | |
| Teuchos::RCP< const Teuchos::Comm< int > > | getComm () const |
| Returns the operator's communicator. More... | |
| Teuchos::RCP< const Tpetra::RowMatrix< scalar_type, local_ordinal_type, global_ordinal_type, node_type > > | getMatrix () const |
| Returns a reference to the matrix to be preconditioned. More... | |
| int | getNumInitialize () const |
| Returns the number of calls to Initialize(). More... | |
| int | getNumCompute () const |
| Returns the number of calls to Compute(). More... | |
| int | getNumApply () const |
| Returns the number of calls to apply(). More... | |
| double | getInitializeTime () const |
| Returns the time spent in Initialize(). More... | |
| double | getComputeTime () const |
| Returns the time spent in Compute(). More... | |
| double | getApplyTime () const |
| Returns the time spent in apply(). More... | |
Public Member Functions inherited from Ifpack2::Preconditioner< MatrixType::scalar_type, MatrixType::local_ordinal_type, MatrixType::global_ordinal_type, MatrixType::node_type > | |
| virtual | ~Preconditioner () |
| Destructor. More... | |
| virtual Teuchos::RCP< const Tpetra::Map< MatrixType::local_ordinal_type, MatrixType::global_ordinal_type, MatrixType::node_type > > | getDomainMap () const=0 |
| The domain Map of this operator. More... | |
| virtual Teuchos::RCP< const Tpetra::Map< MatrixType::local_ordinal_type, MatrixType::global_ordinal_type, MatrixType::node_type > > | getRangeMap () const=0 |
| The range Map of this operator. More... | |
| virtual bool | isInitialized () const=0 |
| True if the preconditioner has been successfully initialized, else false. More... | |
| virtual bool | isComputed () const=0 |
| True if the preconditioner has been successfully computed, else false. More... | |
| virtual Teuchos::RCP< const Tpetra::RowMatrix< MatrixType::scalar_type, MatrixType::local_ordinal_type, MatrixType::global_ordinal_type, MatrixType::node_type > > | getMatrix () const=0 |
| The input matrix given to the constructor. More... | |
| virtual int | getNumInitialize () const=0 |
| The number of calls to initialize(). More... | |
| virtual int | getNumCompute () const=0 |
| The number of calls to compute(). More... | |
| virtual int | getNumApply () const=0 |
| The number of calls to apply(). More... | |
| virtual double | getInitializeTime () const=0 |
| The time (in seconds) spent in initialize(). More... | |
| virtual double | getComputeTime () const=0 |
| The time (in seconds) spent in compute(). More... | |
| virtual double | getApplyTime () const=0 |
| The time (in seconds) spent in apply(). More... | |
Overridden from Teuchos::Describable | |
| std::string | description () const |
| Return a simple one-line description of this object. More... | |
| void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const |
| Print the object with some verbosity level to an FancyOStream object. More... | |
Wrapper for Hiptmair smoothers.
| A | specialization of Tpetra::RowMatrix. |
Ifpack2::Hiptmair does smoothing on two spaces; a primary space and an auxiliary space. This situation arises when preconditioning Maxwell's equations discretized by edge elements.
For a list of all run-time parameters that this class accepts, see the documentation of setParameters().
| typedef MatrixType::scalar_type Ifpack2::Hiptmair< MatrixType >::scalar_type |
The type of the entries of the input MatrixType.
| typedef MatrixType::local_ordinal_type Ifpack2::Hiptmair< MatrixType >::local_ordinal_type |
The type of local indices in the input MatrixType.
| typedef MatrixType::global_ordinal_type Ifpack2::Hiptmair< MatrixType >::global_ordinal_type |
The type of global indices in the input MatrixType.
| typedef MatrixType::node_type Ifpack2::Hiptmair< MatrixType >::node_type |
The Node type used by the input MatrixType.
| typedef Teuchos::ScalarTraits<scalar_type>::magnitudeType Ifpack2::Hiptmair< MatrixType >::magnitude_type |
The type of the magnitude (absolute value) of a matrix entry.
| typedef Tpetra::RowMatrix<scalar_type, local_ordinal_type, global_ordinal_type, node_type> Ifpack2::Hiptmair< MatrixType >::row_matrix_type |
Type of the Tpetra::RowMatrix specialization that this class uses.
| typedef Ifpack2::Preconditioner<scalar_type, local_ordinal_type, global_ordinal_type, node_type> Ifpack2::Hiptmair< MatrixType >::prec_type |
Type of the Ifpack2::Preconditioner specialization from which this class inherits.
|
explicit |
Constructor that takes 3 Tpetra matrices.
|
virtual |
Destructor.
|
virtual |
Set the preconditioner's parameters.
This preconditioner accepts the following parameters:
std::string)std::string)Teuchos::ParameterList)Teuchos::ParameterList)std::string)bool)
|
virtual |
Do any initialization that depends on the input matrix's structure.
|
inline |
Return true if initialize() completed successfully, else false.
|
virtual |
Do any initialization that depends on the input matrix's values.
|
inline |
Return true if compute() completed successfully, else false.
|
virtual |
Apply the preconditioner to X, putting the result in Y.
| Teuchos::RCP< const Tpetra::Map< typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > > Ifpack2::Hiptmair< MatrixType >::getDomainMap |
Tpetra::Map representing the domain of this operator.
| Teuchos::RCP< const Tpetra::Map< typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > > Ifpack2::Hiptmair< MatrixType >::getRangeMap |
Tpetra::Map representing the range of this operator.
| bool Ifpack2::Hiptmair< MatrixType >::hasTransposeApply |
Whether this object's apply() method can apply the transpose (or conjugate transpose, if applicable).
| Teuchos::RCP< const Teuchos::Comm< int > > Ifpack2::Hiptmair< MatrixType >::getComm |
Returns the operator's communicator.
| Teuchos::RCP< const Tpetra::RowMatrix< typename MatrixType::scalar_type, typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > > Ifpack2::Hiptmair< MatrixType >::getMatrix |
Returns a reference to the matrix to be preconditioned.
| int Ifpack2::Hiptmair< MatrixType >::getNumInitialize |
Returns the number of calls to Initialize().
| int Ifpack2::Hiptmair< MatrixType >::getNumCompute |
Returns the number of calls to Compute().
| int Ifpack2::Hiptmair< MatrixType >::getNumApply |
Returns the number of calls to apply().
| double Ifpack2::Hiptmair< MatrixType >::getInitializeTime |
Returns the time spent in Initialize().
| double Ifpack2::Hiptmair< MatrixType >::getComputeTime |
Returns the time spent in Compute().
| double Ifpack2::Hiptmair< MatrixType >::getApplyTime |
Returns the time spent in apply().
| std::string Ifpack2::Hiptmair< MatrixType >::description |
Return a simple one-line description of this object.
| void Ifpack2::Hiptmair< MatrixType >::describe | ( | Teuchos::FancyOStream & | out, |
| const Teuchos::EVerbosityLevel | verbLevel = Teuchos::Describable::verbLevel_default |
||
| ) | const |
Print the object with some verbosity level to an FancyOStream object.