Belos  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Types | Public Member Functions | List of all members
Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType > Class Template Reference

Stub implementation of BlockCGIter, for ScalarType types for which Teuchos::LAPACK does NOT have a valid implementation. More...

#include <BelosBlockCGIter.hpp>

Inheritance diagram for Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >:
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
 

Public Member Functions

 BlockCGIter (const Teuchos::RCP< LinearProblem< ScalarType, MV, OP > > &, const Teuchos::RCP< OutputManager< ScalarType > > &, const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &, const Teuchos::RCP< MatOrthoManager< ScalarType, MV, OP > > &, Teuchos::ParameterList &)
 
virtual ~BlockCGIter ()
 
void iterate ()
 This method performs linear solver iterations until the status test indicates the need to stop or an error occurs (in which case, an std::exception is thrown). More...
 
void initializeCG (Teuchos::RCP< BlockCGIterationState< ScalarType, MV > >, Teuchos::RCP< MV >)
 
void initialize ()
 Initialize the solver with the initial vectors from the linear problem or random data. More...
 
Teuchos::RCP
< CGIterationStateBase
< ScalarType, MV > > 
getState () const
 Get the current state of the linear solver. More...
 
void setState (Teuchos::RCP< CGIterationStateBase< ScalarType, MV > > state)
 
int getNumIters () const
 Get the current iteration count. More...
 
void resetNumIters (int iter=0)
 Reset the iteration count to iter. More...
 
Teuchos::RCP< const MV > getNativeResiduals (std::vector< MagnitudeType > *) const
 
Teuchos::RCP< MV > getCurrentUpdate () const
 Get the current update to the linear system. More...
 
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 to be used by the iterative solver in solving this linear problem. More...
 
bool isInitialized ()
 States whether the solver has been initialized or not. More...
 
void setDoCondEst (bool val)
 Sets whether or not to store the diagonal for condition estimation. More...
 
- Public Member Functions inherited from Belos::CGIteration< ScalarType, MV, OP >
virtual Teuchos::ArrayView
< typename
Teuchos::ScalarTraits
< ScalarType >::magnitudeType > 
getDiag ()=0
 Gets the diagonal for condition estimation. More...
 
virtual Teuchos::ArrayView
< typename
Teuchos::ScalarTraits
< ScalarType >::magnitudeType > 
getOffDiag ()=0
 Gets the off-diagonal for condition estimation. More...
 
virtual void initializeCG (Teuchos::RCP< CGIterationStateBase< ScalarType, MV > > newstate, Teuchos::RCP< MV > R_0)=0
 Initialize the solver to an iterate, providing a complete state. More...
 
- 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, const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
class Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >

Stub implementation of BlockCGIter, for ScalarType types for which Teuchos::LAPACK does NOT have a valid implementation.

Implementation of the block preconditioned Conjugate Gradient (CG) iteration.

Author
Teri Barth and Heidi Thornquist

Definition at line 85 of file BelosBlockCGIter.hpp.

Member Typedef Documentation

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
typedef MultiVecTraits<ScalarType,MV> Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::MVT

Definition at line 87 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
typedef OperatorTraits<ScalarType,MV,OP> Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::OPT

Definition at line 88 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
typedef Teuchos::ScalarTraits<ScalarType> Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::SCT

Definition at line 89 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
typedef SCT::magnitudeType Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::MagnitudeType

Definition at line 90 of file BelosBlockCGIter.hpp.

Constructor & Destructor Documentation

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::BlockCGIter ( const Teuchos::RCP< LinearProblem< ScalarType, MV, OP > > &  ,
const Teuchos::RCP< OutputManager< ScalarType > > &  ,
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &  ,
const Teuchos::RCP< MatOrthoManager< ScalarType, MV, OP > > &  ,
Teuchos::ParameterList  
)
inline

Definition at line 92 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
virtual Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::~BlockCGIter ( )
inlinevirtual

Definition at line 101 of file BelosBlockCGIter.hpp.

Member Function Documentation

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::iterate ( )
inlinevirtual

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

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

Definition at line 103 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::initializeCG ( Teuchos::RCP< BlockCGIterationState< ScalarType, MV > >  ,
Teuchos::RCP< MV >   
)
inline

Definition at line 107 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::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 111 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
Teuchos::RCP<CGIterationStateBase<ScalarType,MV> > Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::getState ( ) const
inlinevirtual

Get the current state of the linear solver.

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

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

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

Definition at line 115 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::setState ( Teuchos::RCP< CGIterationStateBase< ScalarType, MV > >  state)
inlinevirtual

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

Definition at line 119 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
int Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::getNumIters ( ) const
inlinevirtual

Get the current iteration count.

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

Definition at line 123 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::resetNumIters ( int  iter = 0)
inlinevirtual

Reset the iteration count to iter.

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

Definition at line 127 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
Teuchos::RCP<const MV> Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::getNativeResiduals ( std::vector< MagnitudeType > *  ) const
inline

Definition at line 132 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
Teuchos::RCP<MV> Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::getCurrentUpdate ( ) const
inlinevirtual

Get the current update to the linear system.

Note
Some solvers, like GMRES, do not compute updates to the solution every iteration. This method forces the computation of the current update.

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

Definition at line 136 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
const LinearProblem<ScalarType,MV,OP>& Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::getProblem ( ) const
inlinevirtual

Get a constant reference to the linear problem.

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

Definition at line 140 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
int Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::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 144 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::setBlockSize ( int  blockSize)
inlinevirtual

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

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

Definition at line 148 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
bool Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::isInitialized ( )
inlinevirtual

States whether the solver has been initialized or not.

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

Definition at line 152 of file BelosBlockCGIter.hpp.

template<class ScalarType , class MV , class OP , const bool lapackSupportsScalarType = Belos::Details::LapackSupportsScalar<ScalarType>::value>
void Belos::BlockCGIter< ScalarType, MV, OP, lapackSupportsScalarType >::setDoCondEst ( bool  val)
inlinevirtual

Sets whether or not to store the diagonal for condition estimation.

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

Definition at line 156 of file BelosBlockCGIter.hpp.


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

Generated on Fri Feb 21 2025 09:24:41 for Belos by doxygen 1.8.5