Belos Package Browser (Single Doxygen Collection)  Development
Public Types | Private Attributes | List of all members
Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP > Class Template Reference

This class implements the preconditioned transpose-free QMR algorithm for solving non-Hermitian linear systems of equations Ax = b, where b is the right-hand side vector and x is the corresponding solution. More...

#include <BelosPseudoBlockTFQMRIter.hpp>

Inheritance diagram for Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >:
Inheritance graph
[legend]

Public Types

typedef MultiVecTraits< ScalarType, MV > MVT
 
typedef OperatorTraits< ScalarType, MV, OP > OPT
 
typedef Teuchos::ScalarTraits< ScalarType > SCT
 
typedef SCT::magnitudeType MagnitudeType
 

Private Attributes

const Teuchos::RCP< LinearProblem< ScalarType, MV, OP > > lp_
 
const Teuchos::RCP< OutputManager< ScalarType > > om_
 
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > stest_
 
int numRHS_
 
std::vector< ScalarType > alpha_
 
std::vector< ScalarType > eta_
 
std::vector< ScalarType > rho_
 
std::vector< ScalarType > rho_old_
 
std::vector< MagnitudeTypetau_
 
std::vector< MagnitudeTypetheta_
 
bool initialized_
 
int iter_
 
Teuchos::RCP< MV > W_
 
Teuchos::RCP< MV > U_
 
Teuchos::RCP< MV > AU_
 
Teuchos::RCP< MV > Rtilde_
 
Teuchos::RCP< MV > D_
 
Teuchos::RCP< MV > V_
 
Teuchos::RCP< MV > solnUpdate_
 

Constructor/Destructor.

 PseudoBlockTFQMRIter (const Teuchos::RCP< LinearProblem< ScalarType, MV, OP > > &problem, const Teuchos::RCP< OutputManager< ScalarType > > &printer, const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &tester, Teuchos::ParameterList &params)
 Belos::PseudoBlockTFQMRIter constructor. More...
 
virtual ~PseudoBlockTFQMRIter ()
 Belos::PseudoBlockTFQMRIter destructor. More...
 

Solver methods

void iterate ()
 This method performs block TFQMR iterations until the status test indicates the need to stop or an error occurs (in which case, an std::exception is thrown). More...
 
void initializeTFQMR (const PseudoBlockTFQMRIterState< ScalarType, MV > &newstate)
 Initialize the solver to an iterate, providing a complete state. More...
 
void initialize ()
 Initialize the solver with the initial vectors from the linear problem or random data. More...
 
PseudoBlockTFQMRIterState< ScalarType, MV > getState () const
 Get the current state of the linear solver. More...
 

Status methods

int getNumIters () const
 Get the current iteration count. More...
 
void resetNumIters (int iter=0)
 Reset the iteration count. More...
 
Teuchos::RCP< const MV > getNativeResiduals (std::vector< MagnitudeType > *norms) const
 Get the norms of the residuals native to the solver. More...
 
Teuchos::RCP< MV > getCurrentUpdate () const
 Get the current update to the linear system. More...
 

Accessor methods

const LinearProblem< ScalarType, MV, OP > & getProblem () const
 Get a constant reference to the linear problem. More...
 
int getBlockSize () const
 Get the blocksize to be used by the iterative solver in solving this linear problem. More...
 
void setBlockSize (int blockSize)
 Set the blocksize. More...
 
bool isInitialized ()
 States whether the solver has been initialized or not. More...
 

Additional Inherited Members

- Public Member Functions inherited from Belos::Iteration< ScalarType, MV, OP >
 Iteration ()
 Default Constructor. More...
 
virtual ~Iteration ()
 Destructor. More...
 
virtual Teuchos::RCP< const MV > getNativeResiduals (std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > *norms) const =0
 Get the residuals native to the solver. More...
 

Detailed Description

template<class ScalarType, class MV, class OP>
class Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >

This class implements the preconditioned transpose-free QMR algorithm for solving non-Hermitian linear systems of equations Ax = b, where b is the right-hand side vector and x is the corresponding solution.

Author
Heidi Thornquist

Definition at line 148 of file BelosPseudoBlockTFQMRIter.hpp.

Member Typedef Documentation

◆ MVT

template<class ScalarType , class MV , class OP >
typedef MultiVecTraits<ScalarType,MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::MVT

Definition at line 153 of file BelosPseudoBlockTFQMRIter.hpp.

◆ OPT

template<class ScalarType , class MV , class OP >
typedef OperatorTraits<ScalarType,MV,OP> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::OPT

Definition at line 154 of file BelosPseudoBlockTFQMRIter.hpp.

◆ SCT

template<class ScalarType , class MV , class OP >
typedef Teuchos::ScalarTraits<ScalarType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::SCT

Definition at line 155 of file BelosPseudoBlockTFQMRIter.hpp.

◆ MagnitudeType

template<class ScalarType , class MV , class OP >
typedef SCT::magnitudeType Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::MagnitudeType

Definition at line 156 of file BelosPseudoBlockTFQMRIter.hpp.

Constructor & Destructor Documentation

◆ PseudoBlockTFQMRIter()

template<class ScalarType , class MV , class OP >
Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::PseudoBlockTFQMRIter ( const Teuchos::RCP< LinearProblem< ScalarType, MV, OP > > &  problem,
const Teuchos::RCP< OutputManager< ScalarType > > &  printer,
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &  tester,
Teuchos::ParameterList params 
)

Belos::PseudoBlockTFQMRIter constructor.

Definition at line 355 of file BelosPseudoBlockTFQMRIter.hpp.

◆ ~PseudoBlockTFQMRIter()

template<class ScalarType , class MV , class OP >
virtual Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::~PseudoBlockTFQMRIter ( )
inlinevirtual

Belos::PseudoBlockTFQMRIter destructor.

Definition at line 168 of file BelosPseudoBlockTFQMRIter.hpp.

Member Function Documentation

◆ iterate()

template<class ScalarType , class MV , class OP >
void Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::iterate ( )
virtual

This method performs block TFQMR iterations until the status test indicates the need to stop or an error occurs (in which case, an std::exception is thrown).

iterate() will first determine whether the solver is inintialized; if not, it will call initialize() using default arguments. After initialization, the solver performs block TFQMR iterations until the status test evaluates as Passed, at which point the method returns to the caller.

The block TFQMR iteration proceeds as follows:

  1. The operator problem->applyOp() is applied to the newest blockSize vectors in the Krylov basis.
  2. The resulting vectors are orthogonalized against the previous basis vectors, and made orthonormal.
  3. The Hessenberg matrix is updated.
  4. The least squares system is updated.

The status test is queried at the beginning of the iteration.

Possible exceptions thrown include the PseudoBlockTFQMRIterOrthoFailure.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 476 of file BelosPseudoBlockTFQMRIter.hpp.

◆ initializeTFQMR()

template<class ScalarType , class MV , class OP >
void Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::initializeTFQMR ( const PseudoBlockTFQMRIterState< ScalarType, MV > &  newstate)

Initialize the solver to an iterate, providing a complete state.

The BlockPseudoBlockTFQMRIter contains a certain amount of state, consisting of the current Krylov basis and the associated Hessenberg matrix.

initialize() gives the user the opportunity to manually set these, although this must be done with caution, abiding by the rules given below. All notions of orthogonality and orthonormality are derived from the inner product specified by the orthogonalization manager.

Postcondition
isInitialized() == true (see post-conditions of isInitialize())

The user has the option of specifying any component of the state using initialize(). However, these arguments are assumed to match the post-conditions specified under isInitialized(). Any necessary component of the state not given to initialize() will be generated.

Note
For any pointer in newstate which directly points to the multivectors in the solver, the data is not copied.

Definition at line 393 of file BelosPseudoBlockTFQMRIter.hpp.

◆ initialize()

template<class ScalarType , class MV , class OP >
void Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::initialize ( )
inlinevirtual

Initialize the solver with the initial vectors from the linear problem or random data.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 224 of file BelosPseudoBlockTFQMRIter.hpp.

◆ getState()

template<class ScalarType , class MV , class OP >
PseudoBlockTFQMRIterState<ScalarType,MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::getState ( ) const
inline

Get the current state of the linear solver.

The data is only valid if isInitialized() == true.

Returns
A PseudoBlockTFQMRIterState object containing const pointers to the current solver state.

Definition at line 237 of file BelosPseudoBlockTFQMRIter.hpp.

◆ getNumIters()

template<class ScalarType , class MV , class OP >
int Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::getNumIters ( ) const
inlinevirtual

Get the current iteration count.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 265 of file BelosPseudoBlockTFQMRIter.hpp.

◆ resetNumIters()

template<class ScalarType , class MV , class OP >
void Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::resetNumIters ( int  iter = 0)
inlinevirtual

Reset the iteration count.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 268 of file BelosPseudoBlockTFQMRIter.hpp.

◆ getNativeResiduals()

template<class ScalarType , class MV , class OP >
Teuchos::RCP< const MV > Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::getNativeResiduals ( std::vector< MagnitudeType > *  norms) const

Get the norms of the residuals native to the solver.

Returns
A std::vector of length blockSize containing the native residuals.

Definition at line 373 of file BelosPseudoBlockTFQMRIter.hpp.

◆ getCurrentUpdate()

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::getCurrentUpdate ( ) const
inlinevirtual

Get the current update to the linear system.

Note
This method returns the accumulated update to the solution instead of updating the linear problem, since it may incur an additional preconditioner application each iteration.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 278 of file BelosPseudoBlockTFQMRIter.hpp.

◆ getProblem()

template<class ScalarType , class MV , class OP >
const LinearProblem<ScalarType,MV,OP>& Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::getProblem ( ) const
inlinevirtual

Get a constant reference to the linear problem.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 287 of file BelosPseudoBlockTFQMRIter.hpp.

◆ getBlockSize()

template<class ScalarType , class MV , class OP >
int Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::getBlockSize ( ) const
inlinevirtual

Get the blocksize to be used by the iterative solver in solving this linear problem.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 290 of file BelosPseudoBlockTFQMRIter.hpp.

◆ setBlockSize()

template<class ScalarType , class MV , class OP >
void Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::setBlockSize ( int  blockSize)
inlinevirtual

Set the blocksize.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 293 of file BelosPseudoBlockTFQMRIter.hpp.

◆ isInitialized()

template<class ScalarType , class MV , class OP >
bool Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::isInitialized ( )
inlinevirtual

States whether the solver has been initialized or not.

Implements Belos::Iteration< ScalarType, MV, OP >.

Definition at line 299 of file BelosPseudoBlockTFQMRIter.hpp.

Member Data Documentation

◆ lp_

template<class ScalarType , class MV , class OP >
const Teuchos::RCP<LinearProblem<ScalarType,MV,OP> > Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::lp_
private

Definition at line 309 of file BelosPseudoBlockTFQMRIter.hpp.

◆ om_

template<class ScalarType , class MV , class OP >
const Teuchos::RCP<OutputManager<ScalarType> > Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::om_
private

Definition at line 310 of file BelosPseudoBlockTFQMRIter.hpp.

◆ stest_

template<class ScalarType , class MV , class OP >
const Teuchos::RCP<StatusTest<ScalarType,MV,OP> > Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::stest_
private

Definition at line 311 of file BelosPseudoBlockTFQMRIter.hpp.

◆ numRHS_

template<class ScalarType , class MV , class OP >
int Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::numRHS_
private

Definition at line 318 of file BelosPseudoBlockTFQMRIter.hpp.

◆ alpha_

template<class ScalarType , class MV , class OP >
std::vector<ScalarType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::alpha_
private

Definition at line 321 of file BelosPseudoBlockTFQMRIter.hpp.

◆ eta_

template<class ScalarType , class MV , class OP >
std::vector<ScalarType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::eta_
private

Definition at line 321 of file BelosPseudoBlockTFQMRIter.hpp.

◆ rho_

template<class ScalarType , class MV , class OP >
std::vector<ScalarType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::rho_
private

Definition at line 321 of file BelosPseudoBlockTFQMRIter.hpp.

◆ rho_old_

template<class ScalarType , class MV , class OP >
std::vector<ScalarType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::rho_old_
private

Definition at line 321 of file BelosPseudoBlockTFQMRIter.hpp.

◆ tau_

template<class ScalarType , class MV , class OP >
std::vector<MagnitudeType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::tau_
private

Definition at line 322 of file BelosPseudoBlockTFQMRIter.hpp.

◆ theta_

template<class ScalarType , class MV , class OP >
std::vector<MagnitudeType> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::theta_
private

Definition at line 322 of file BelosPseudoBlockTFQMRIter.hpp.

◆ initialized_

template<class ScalarType , class MV , class OP >
bool Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::initialized_
private

Definition at line 330 of file BelosPseudoBlockTFQMRIter.hpp.

◆ iter_

template<class ScalarType , class MV , class OP >
int Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::iter_
private

Definition at line 333 of file BelosPseudoBlockTFQMRIter.hpp.

◆ W_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::W_
private

Definition at line 338 of file BelosPseudoBlockTFQMRIter.hpp.

◆ U_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::U_
private

Definition at line 339 of file BelosPseudoBlockTFQMRIter.hpp.

◆ AU_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::AU_
private

Definition at line 339 of file BelosPseudoBlockTFQMRIter.hpp.

◆ Rtilde_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::Rtilde_
private

Definition at line 340 of file BelosPseudoBlockTFQMRIter.hpp.

◆ D_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::D_
private

Definition at line 341 of file BelosPseudoBlockTFQMRIter.hpp.

◆ V_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::V_
private

Definition at line 342 of file BelosPseudoBlockTFQMRIter.hpp.

◆ solnUpdate_

template<class ScalarType , class MV , class OP >
Teuchos::RCP<MV> Belos::PseudoBlockTFQMRIter< ScalarType, MV, OP >::solnUpdate_
private

Definition at line 343 of file BelosPseudoBlockTFQMRIter.hpp.


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