Anasazi
Version of the Day
|
User interface for the LOBPCG eigensolver. More...
#include <AnasaziLOBPCGSolMgr.hpp>
Public Member Functions | |
Constructors/Destructor | |
LOBPCGSolMgr (const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > &problem, Teuchos::ParameterList &pl) | |
Basic constructor for LOBPCGSolMgr. More... | |
virtual | ~LOBPCGSolMgr () |
Destructor. More... | |
Accessor methods | |
const Eigenproblem< ScalarType, MV, OP > & | getProblem () const |
Return the eigenvalue problem. More... | |
int | getNumIters () const |
Get the iteration count for the most recent call to solve() . More... | |
Teuchos::Array< Teuchos::RCP < Teuchos::Time > > | getTimers () const |
Return the timers for this object. More... | |
Solver application methods | |
ReturnType | solve () |
This method performs possibly repeated calls to the underlying eigensolver's iterate() routine until the problem has been solved (as decided by the solver manager) or the solver manager decides to quit. More... | |
void | setGlobalStatusTest (const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &global) |
Set the status test defining global convergence. More... | |
const Teuchos::RCP< StatusTest < ScalarType, MV, OP > > & | getGlobalStatusTest () const |
Get the status test defining global convergence. More... | |
void | setLockingStatusTest (const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &locking) |
Set the status test defining locking. More... | |
const Teuchos::RCP< StatusTest < ScalarType, MV, OP > > & | getLockingStatusTest () const |
Get the status test defining locking. More... | |
void | setDebugStatusTest (const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &debug) |
Set the status test for debugging. More... | |
const Teuchos::RCP< StatusTest < ScalarType, MV, OP > > & | getDebugStatusTest () const |
Get the status test for debugging. More... | |
Public Member Functions inherited from Anasazi::SolverManager< ScalarType, MV, OP > | |
SolverManager () | |
Empty constructor. More... | |
virtual | ~SolverManager () |
Destructor. More... | |
User interface for the LOBPCG eigensolver.
This class provides a user interface for the LOBPCG (Locally Optimal Block Preconditioned Conjugate Gradient) eigensolver. It provides the following features:
recovery from orthogonalization failures (LOBPCGRitzFailure) when full orthogonalization is disabled
Much of this behavior is controlled via parameters and options passed to the solver manager. For more information, see the default (zero-argument) constructor of this class.
For an example that defines a custom StatusTest so that Anasazi's solver LOBPCG converges correctly with spectrum folding, see the LOBPCGCustomStatusTest.cpp example (associated with StatusTest).
LOBPCG stops iterating if it has reached the maximum number of iterations, or ig lobal convergence is detected (uses StatusTestWithOrdering to ensure that only the most significant eigenvalues/eigenvectors have converged). If not specified via setGlobalStatusTest(), the convergence test is a StatusTestResNorm instance which tests the M-norms of the direct residuals relative to the Ritz values.
LOBPCG also includes a "locking test" which deflates converged eigenpairs for locking. It will query the underlying LOBPCG eigensolver to determine when eigenvectors should be locked. If not specified via setLockingStatusTest(), the locking test is a StatusTestResNorm object.
Users may specify an optional "debug test." This lets users specify additional monitoring of the iteration. If not specified via setDebugStatusTest(), this is ignored. In most cases, the user's debug test should return Failed; if it returns Passed, solve() will throw an AnasaziError exception.
Definition at line 142 of file AnasaziLOBPCGSolMgr.hpp.
Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::LOBPCGSolMgr | ( | const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > & | problem, |
Teuchos::ParameterList & | pl | ||
) |
Basic constructor for LOBPCGSolMgr.
This constructor accepts the Eigenproblem to be solved in addition to a parameter list of options for the solver manager. These options include the following:
"Which"
- a string
specifying the desired eigenvalues: SM, LM, SR or LR. Default: "SR""Block Size"
- an int
specifying the block size to be used by the underlying LOBPCG solver. Default: problem->getNEV()"Full Ortho"
- a bool
specifying whether the underlying solver should employ the full orthogonalization scheme. Default: true"Recover"
- a bool
specifying whether the solver manager should attempt to recover in the case of a LOBPCGRitzFailure when full orthogonalization is disabled. Default: true"Verbosity"
- a sum of MsgType specifying the verbosity. Default: Errors"Init"
- a LOBPCGState<ScalarType,MV> struct used to initialize the LOBPCG eigensolver."Output Stream"
- a reference-counted pointer to the formatted output stream where all solver output is sent. Default: Teuchos::getFancyOStream ( Teuchos::rcpFromRef (std::cout) )"Output Processor"
- an int
specifying the MPI processor that will print solver/timer details. Default: 0"Maximum Iterations"
- an int
specifying the maximum number of iterations the underlying solver is allowed to perform. Default: 100"Convergence Tolerance"
- a MagnitudeType
specifying the level that residual norms must reach to decide convergence. Default: machine precision."Relative Convergence Tolerance"
- a bool
specifying whether residuals norms should be scaled by their eigenvalues for the purposing of deciding convergence. Default: true"Convergence Norm"
- a string
specifying the norm for convergence testing: "2" or "M""Use Locking"
- a bool
specifying whether the algorithm should employ locking of converged eigenpairs. Default: false"Max Locked"
- an int
specifying the maximum number of eigenpairs to be locked. Default: problem->getNEV()"Locking Quorum"
- an int
specifying the number of eigenpairs that must meet the locking criteria before locking actually occurs. Default: 1"Locking Tolerance"
- a MagnitudeType
specifying the level that residual norms must reach to decide locking. Default: 0.1*convergence tolerance"Relative Locking Tolerance"
- a bool
specifying whether residuals norms should be scaled by their eigenvalues for the purposing of deciding locking. Default: true"Locking Norm"
- a string
specifying the norm for locking testing: "2" or "M" Definition at line 298 of file AnasaziLOBPCGSolMgr.hpp.
|
inlinevirtual |
Destructor.
Definition at line 187 of file AnasaziLOBPCGSolMgr.hpp.
|
inlinevirtual |
Return the eigenvalue problem.
Implements Anasazi::SolverManager< ScalarType, MV, OP >.
Definition at line 194 of file AnasaziLOBPCGSolMgr.hpp.
|
inlinevirtual |
Get the iteration count for the most recent call to solve()
.
Implements Anasazi::SolverManager< ScalarType, MV, OP >.
Definition at line 199 of file AnasaziLOBPCGSolMgr.hpp.
|
inlinevirtual |
Return the timers for this object.
The timers are ordered as follows:
Reimplemented from Anasazi::SolverManager< ScalarType, MV, OP >.
Definition at line 209 of file AnasaziLOBPCGSolMgr.hpp.
|
virtual |
This method performs possibly repeated calls to the underlying eigensolver's iterate() routine until the problem has been solved (as decided by the solver manager) or the solver manager decides to quit.
This method calls LOBPCG::iterate(), which will return either because a specially constructed status test evaluates to Passed or an exception is thrown.
A return from LOBPCG::iterate() signifies one of the following scenarios:
Implements Anasazi::SolverManager< ScalarType, MV, OP >.
Definition at line 443 of file AnasaziLOBPCGSolMgr.hpp.
void Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::setGlobalStatusTest | ( | const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & | global | ) |
Set the status test defining global convergence.
Definition at line 1031 of file AnasaziLOBPCGSolMgr.hpp.
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::getGlobalStatusTest | ( | ) | const |
Get the status test defining global convergence.
Definition at line 1039 of file AnasaziLOBPCGSolMgr.hpp.
void Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::setLockingStatusTest | ( | const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & | locking | ) |
Set the status test defining locking.
Definition at line 1061 of file AnasaziLOBPCGSolMgr.hpp.
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::getLockingStatusTest | ( | ) | const |
Get the status test defining locking.
Definition at line 1069 of file AnasaziLOBPCGSolMgr.hpp.
void Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::setDebugStatusTest | ( | const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & | debug | ) |
Set the status test for debugging.
Definition at line 1046 of file AnasaziLOBPCGSolMgr.hpp.
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & Anasazi::LOBPCGSolMgr< ScalarType, MV, OP >::getDebugStatusTest | ( | ) | const |
Get the status test for debugging.
Definition at line 1054 of file AnasaziLOBPCGSolMgr.hpp.