Anasazi
Version of the Day
|
This class provides the Locally Optimal Block Preconditioned Conjugate Gradient (LOBPCG) iteration, a preconditioned iteration for solving linear Hermitian eigenproblems. More...
#include <AnasaziLOBPCG.hpp>
Public Member Functions | |
Constructor/Destructor | |
LOBPCG (const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > &problem, const Teuchos::RCP< SortManager< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > > &sorter, const Teuchos::RCP< OutputManager< ScalarType > > &printer, const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &tester, const Teuchos::RCP< MatOrthoManager< ScalarType, MV, OP > > &ortho, Teuchos::ParameterList ¶ms) | |
LOBPCG constructor with eigenproblem, solver utilities, and parameter list of solver options. More... | |
virtual | ~LOBPCG () |
LOBPCG destructor More... | |
Solver methods | |
void | iterate () |
This method performs LOBPCG iterations until the status test indicates the need to stop or an error occurs (in which case, an exception is thrown). More... | |
void | initialize (LOBPCGState< ScalarType, MV > &newstate) |
Initialize the solver to an iterate, optionally providing the Ritz values, residual, and search direction. More... | |
void | initialize () |
Initialize the solver with the initial vectors from the eigenproblem or random data. More... | |
bool | isInitialized () const |
Indicates whether the solver has been initialized or not. More... | |
LOBPCGState< ScalarType, MV > | getState () const |
Get the current state of the eigensolver. More... | |
Status methods | |
int | getNumIters () const |
Get the current iteration count. More... | |
void | resetNumIters () |
Reset the iteration count. More... | |
Teuchos::RCP< const MV > | getRitzVectors () |
Get the Ritz vectors from the previous iteration. More... | |
std::vector< Value< ScalarType > > | getRitzValues () |
Get the Ritz values from the previous iteration. More... | |
std::vector< int > | getRitzIndex () |
Get the index used for extracting Ritz vectors from getRitzVectors(). More... | |
std::vector< typename Teuchos::ScalarTraits < ScalarType >::magnitudeType > | getResNorms () |
Get the current residual norms. More... | |
std::vector< typename Teuchos::ScalarTraits < ScalarType >::magnitudeType > | getRes2Norms () |
Get the current residual 2-norms. More... | |
std::vector< typename Teuchos::ScalarTraits < ScalarType >::magnitudeType > | getRitzRes2Norms () |
Get the 2-norms of the residuals. More... | |
int | getCurSubspaceDim () const |
Get the dimension of the search subspace used to generate the current eigenvectors and eigenvalues. More... | |
int | getMaxSubspaceDim () const |
Get the maximum dimension allocated for the search subspace. For LOBPCG, this always returns 3*getBlockSize(), the dimension of the subspace colspan([X H P]). More... | |
Accessor routines from Eigensolver | |
void | setStatusTest (Teuchos::RCP< StatusTest< ScalarType, MV, OP > > test) |
Set a new StatusTest for the solver. More... | |
Teuchos::RCP< StatusTest < ScalarType, MV, OP > > | getStatusTest () const |
Get the current StatusTest used by the solver. More... | |
const Eigenproblem< ScalarType, MV, OP > & | getProblem () const |
Get a constant reference to the eigenvalue problem. More... | |
void | setBlockSize (int blockSize) |
Set the blocksize to be used by the iterative solver in solving this eigenproblem. More... | |
int | getBlockSize () const |
Get the blocksize to be used by the iterative solver in solving this eigenproblem. More... | |
void | setAuxVecs (const Teuchos::Array< Teuchos::RCP< const MV > > &auxvecs) |
Set the auxiliary vectors for the solver. More... | |
Teuchos::Array< Teuchos::RCP < const MV > > | getAuxVecs () const |
Get the current auxiliary vectors. More... | |
LOBPCG-specific accessor routines | |
void | setFullOrtho (bool fullOrtho) |
Instruct the LOBPCG iteration to use full orthogonality. More... | |
bool | getFullOrtho () const |
Determine if the LOBPCG iteration is using full orthogonality. More... | |
bool | hasP () |
Indicates whether the search direction given by getState() is valid. More... | |
Output methods | |
void | currentStatus (std::ostream &os) |
This method requests that the solver print out its current status to screen. More... | |
Public Member Functions inherited from Anasazi::Eigensolver< ScalarType, MV, OP > | |
Eigensolver () | |
Default Constructor. More... | |
Eigensolver (const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > &problem, const Teuchos::RCP< SortManager< ScalarType > > &sorter, const Teuchos::RCP< OutputManager< ScalarType > > &printer, const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &tester, const Teuchos::RCP< OrthoManager< ScalarType, MV > > &ortho, Teuchos::ParameterList ¶ms) | |
Basic Constructor. More... | |
virtual | ~Eigensolver () |
Destructor. More... | |
This class provides the Locally Optimal Block Preconditioned Conjugate Gradient (LOBPCG) iteration, a preconditioned iteration for solving linear Hermitian eigenproblems.
This implementation is a modification of the one found in A. Knyazev, "Toward the optimal preconditioned eigensolver: Locally optimal block preconditioner conjugate gradient method", SIAM J. Sci. Comput., vol 23, n 2, pp. 517-541.
The modification consists of the orthogonalization steps recommended in U. Hetmaniuk and R. Lehoucq, "Basis Selection in LOBPCG", Journal of Computational Physics.
These modifcation are referred to as full orthogonalization, and consist of also conducting the local optimization using an orthonormal basis.
Definition at line 222 of file AnasaziLOBPCG.hpp.
Anasazi::LOBPCG< ScalarType, MV, OP >::LOBPCG | ( | const Teuchos::RCP< Eigenproblem< ScalarType, MV, OP > > & | problem, |
const Teuchos::RCP< SortManager< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > > & | sorter, | ||
const Teuchos::RCP< OutputManager< ScalarType > > & | printer, | ||
const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > & | tester, | ||
const Teuchos::RCP< MatOrthoManager< ScalarType, MV, OP > > & | ortho, | ||
Teuchos::ParameterList & | params | ||
) |
LOBPCG constructor with eigenproblem, solver utilities, and parameter list of solver options.
This constructor takes pointers required by the eigensolver, in addition to a parameter list of options for the eigensolver. These options include the following:
int
specifying the block size used by the algorithm. This can also be specified using the setBlockSize() method.bool
specifying whether the solver should employ a full orthogonalization technique. This can also be specified using the setFullOrtho() method. Definition at line 624 of file AnasaziLOBPCG.hpp.
|
inlinevirtual |
LOBPCG destructor
Definition at line 244 of file AnasaziLOBPCG.hpp.
|
virtual |
This method performs LOBPCG iterations until the status test indicates the need to stop or an error occurs (in which case, an exception is thrown).
iterate() will first determine whether the solver is initialized; if not, it will call initialize() using default arguments. After initialization, the solver performs LOBPCG iterations until the status test evaluates as Passed, at which point the method returns to the caller.
The LOBPCG iteration proceeds as follows:
The status test is queried at the beginning of the iteration.
Possible exceptions thrown include std::logic_error, std::invalid_argument or one of the LOBPCG-specific exceptions.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 1350 of file AnasaziLOBPCG.hpp.
void Anasazi::LOBPCG< ScalarType, MV, OP >::initialize | ( | LOBPCGState< ScalarType, MV > & | newstate | ) |
Initialize the solver to an iterate, optionally providing the Ritz values, residual, and search direction.
The LOBPCG eigensolver contains a certain amount of state relating to the current iterate, including the current residual, the current search direction, and the images of these spaces under the eigenproblem operators.
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.
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 component of the state (i.e., KX) not given to initialize() will be generated.
Definition at line 974 of file AnasaziLOBPCG.hpp.
|
virtual |
Initialize the solver with the initial vectors from the eigenproblem or random data.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 1310 of file AnasaziLOBPCG.hpp.
|
virtual |
Indicates whether the solver has been initialized or not.
true:
true
,true
,Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2181 of file AnasaziLOBPCG.hpp.
LOBPCGState< ScalarType, MV > Anasazi::LOBPCG< ScalarType, MV, OP >::getState | ( | ) | const |
Get the current state of the eigensolver.
The data is only valid if isInitialized() == true
. The data for the search directions P is only meaningful if hasP() == true
. Finally, the data for the preconditioned residual (H) is only meaningful in the situation where the solver throws an ::LOBPCGRitzFailure exception during iterate().
Definition at line 2313 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the current iteration count.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2305 of file AnasaziLOBPCG.hpp.
|
virtual |
Reset the iteration count.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2297 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the Ritz vectors from the previous iteration.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2289 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the Ritz values from the previous iteration.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2261 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the index used for extracting Ritz vectors from getRitzVectors().
Because BlockDavidson is a Hermitian solver, all Ritz values are real and all Ritz vectors can be represented in a single column of a multivector. Therefore, getRitzIndex() is not needed when using the output from getRitzVectors().
int
vector of size getCurSubspaceDim() composed of zeros. Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2252 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the current residual norms.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 1977 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the current residual 2-norms.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 1991 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the 2-norms of the residuals.
The Ritz residuals are not defined for the LOBPCG iteration. Hence, this method returns the 2-norms of the direct residuals, and is equivalent to calling getRes2Norms().
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2243 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the dimension of the search subspace used to generate the current eigenvectors and eigenvalues.
LOBPCG employs a sequential subspace iteration, maintaining a fixed-rank basis, as opposed to an expanding subspace mechanism employed by Krylov-subspace solvers like BlockKrylovSchur and BlockDavidson.
false
, the return is 0. Otherwise, the return will be 2*getBlockSize() or 3*getBlockSize(). Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2233 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the maximum dimension allocated for the search subspace. For LOBPCG, this always returns 3*getBlockSize(), the dimension of the subspace colspan([X H P]).
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2226 of file AnasaziLOBPCG.hpp.
|
virtual |
Set a new StatusTest for the solver.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2273 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the current StatusTest used by the solver.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2282 of file AnasaziLOBPCG.hpp.
|
virtual |
Get a constant reference to the eigenvalue problem.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2218 of file AnasaziLOBPCG.hpp.
|
virtual |
Set the blocksize to be used by the iterative solver in solving this eigenproblem.
If the block size is reduced, then the new iterate (and residual and search direction) are chosen as the subset of the current iterate preferred by the sort manager. Otherwise, the solver state is set to uninitialized.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 701 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the blocksize to be used by the iterative solver in solving this eigenproblem.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2211 of file AnasaziLOBPCG.hpp.
|
virtual |
Set the auxiliary vectors for the solver.
Because the current iterate X and search direction P cannot be assumed orthogonal to the new auxiliary vectors, a call to setAuxVecs() with a non-empty argument will reset the solver to the uninitialized state.
In order to preserve the current state, the user will need to extract it from the solver using getState(), orthogonalize it against the new auxiliary vectors, and manually reinitialize the solver using initialize().
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 929 of file AnasaziLOBPCG.hpp.
|
virtual |
Get the current auxiliary vectors.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2204 of file AnasaziLOBPCG.hpp.
void Anasazi::LOBPCG< ScalarType, MV, OP >::setFullOrtho | ( | bool | fullOrtho | ) |
Instruct the LOBPCG iteration to use full orthogonality.
If the getFullOrtho() == false
and isInitialized() == true
and hasP() == true
, then P will be invalidated by setting full orthogonalization to true
.
Definition at line 1320 of file AnasaziLOBPCG.hpp.
bool Anasazi::LOBPCG< ScalarType, MV, OP >::getFullOrtho | ( | ) | const |
Determine if the LOBPCG iteration is using full orthogonality.
Definition at line 2196 of file AnasaziLOBPCG.hpp.
bool Anasazi::LOBPCG< ScalarType, MV, OP >::hasP | ( | ) |
Indicates whether the search direction given by getState() is valid.
Definition at line 2189 of file AnasaziLOBPCG.hpp.
|
virtual |
This method requests that the solver print out its current status to screen.
Implements Anasazi::Eigensolver< ScalarType, MV, OP >.
Definition at line 2136 of file AnasaziLOBPCG.hpp.