Ifpack2 Templated Preconditioning Package  Version 1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
List of all members
Ifpack2::Hiptmair< MatrixType > Class Template Reference

Wrapper for Hiptmair smoothers. More...

#include <Ifpack2_Hiptmair_decl.hpp>

Inheritance diagram for Ifpack2::Hiptmair< MatrixType >:
Inheritance graph
[legend]

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

Detailed Description

template<class MatrixType>
class Ifpack2::Hiptmair< MatrixType >

Wrapper for Hiptmair smoothers.

Template Parameters
Aspecialization 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().

Member Typedef Documentation

template<class MatrixType>
typedef MatrixType::scalar_type Ifpack2::Hiptmair< MatrixType >::scalar_type

The type of the entries of the input MatrixType.

template<class MatrixType>
typedef MatrixType::local_ordinal_type Ifpack2::Hiptmair< MatrixType >::local_ordinal_type

The type of local indices in the input MatrixType.

template<class MatrixType>
typedef MatrixType::global_ordinal_type Ifpack2::Hiptmair< MatrixType >::global_ordinal_type

The type of global indices in the input MatrixType.

template<class MatrixType>
typedef MatrixType::node_type Ifpack2::Hiptmair< MatrixType >::node_type

The Node type used by the input MatrixType.

template<class MatrixType>
typedef Teuchos::ScalarTraits<scalar_type>::magnitudeType Ifpack2::Hiptmair< MatrixType >::magnitude_type

The type of the magnitude (absolute value) of a matrix entry.

template<class MatrixType>
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.

Type of the Ifpack2::Preconditioner specialization from which this class inherits.

Constructor & Destructor Documentation

template<class MatrixType >
Ifpack2::Hiptmair< MatrixType >::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 
)
explicit

Constructor that takes 3 Tpetra matrices.

template<class MatrixType >
Ifpack2::Hiptmair< MatrixType >::~Hiptmair ( )
virtual

Destructor.

Member Function Documentation

template<class MatrixType >
void Ifpack2::Hiptmair< MatrixType >::setParameters ( const Teuchos::ParameterList params)
virtual

Set the preconditioner's parameters.

This preconditioner accepts the following parameters:

  • "hiptmair: smoother type 1" (std::string)
  • "hiptmair: smoother type 2" (std::string)
  • "hiptmair: smoother list 1" (Teuchos::ParameterList)
  • "hiptmair: smoother list 2" (Teuchos::ParameterList)
  • "hiptmair: pre or post" (std::string)
  • "hiptmair: zero starting solution" (bool)

Implements Ifpack2::Preconditioner< MatrixType::scalar_type, MatrixType::local_ordinal_type, MatrixType::global_ordinal_type, MatrixType::node_type >.

template<class MatrixType >
void Ifpack2::Hiptmair< MatrixType >::initialize ( )
virtual
template<class MatrixType>
bool Ifpack2::Hiptmair< MatrixType >::isInitialized ( ) const
inlinevirtual
template<class MatrixType >
void Ifpack2::Hiptmair< MatrixType >::compute ( )
virtual
template<class MatrixType>
bool Ifpack2::Hiptmair< MatrixType >::isComputed ( ) const
inlinevirtual
template<class MatrixType>
void Ifpack2::Hiptmair< MatrixType >::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
virtual
template<class MatrixType >
Teuchos::RCP< const Tpetra::Map< typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > > Ifpack2::Hiptmair< MatrixType >::getDomainMap ( ) const
virtual
template<class MatrixType >
Teuchos::RCP< const Tpetra::Map< typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type > > Ifpack2::Hiptmair< MatrixType >::getRangeMap ( ) const
virtual
template<class MatrixType >
bool Ifpack2::Hiptmair< MatrixType >::hasTransposeApply ( ) const

Whether this object's apply() method can apply the transpose (or conjugate transpose, if applicable).

template<class MatrixType >
Teuchos::RCP< const Teuchos::Comm< int > > Ifpack2::Hiptmair< MatrixType >::getComm ( ) const

Returns the operator's communicator.

template<class MatrixType >
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 ( ) const
virtual
template<class MatrixType >
int Ifpack2::Hiptmair< MatrixType >::getNumInitialize ( ) const
virtual
template<class MatrixType >
int Ifpack2::Hiptmair< MatrixType >::getNumCompute ( ) const
virtual
template<class MatrixType >
int Ifpack2::Hiptmair< MatrixType >::getNumApply ( ) const
virtual
template<class MatrixType >
double Ifpack2::Hiptmair< MatrixType >::getInitializeTime ( ) const
virtual
template<class MatrixType >
double Ifpack2::Hiptmair< MatrixType >::getComputeTime ( ) const
virtual
template<class MatrixType >
double Ifpack2::Hiptmair< MatrixType >::getApplyTime ( ) const
virtual
template<class MatrixType >
std::string Ifpack2::Hiptmair< MatrixType >::description ( ) const

Return a simple one-line description of this object.

template<class MatrixType >
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.


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