Anasazi
Version of the Day
|
"Stub" TSQR adaptor for unsupported multivector types. More...
#include <AnasaziStubTsqrAdapter.hpp>
Public Member Functions | |
StubTsqrAdapter (const Teuchos::RCP< Teuchos::ParameterList > &plist) | |
Constructor (that accepts a parameter list). More... | |
StubTsqrAdapter () | |
Default constructor (stub; throws std::logic_error). More... | |
StubTsqrAdapter (const StubTsqrAdapter &rhs) | |
Copy constructor (throws std::logic_error). More... | |
Teuchos::RCP< const Teuchos::ParameterList > | getValidParameters () const |
Get list of valid default parameters (stub; throws std::logic_error). More... | |
void | setParameterList (const Teuchos::RCP< Teuchos::ParameterList > &plist) |
Set parameters (stub; throws std::logic_error). More... | |
void | factorExplicit (MV &A, MV &Q, dense_matrix_type &R, const bool forceNonnegativeDiagonal=false) |
Compute QR factorization [Q,R] = qr(A,0) (stub; throws std::logic_error). More... | |
int | revealRank (MV &Q, dense_matrix_type &R, const magnitude_type &tol) |
Rank-revealing decomposition (stub; does nothing). More... | |
"Stub" TSQR adaptor for unsupported multivector types.
TSQR (Tall Skinny QR factorization) is an orthogonalization kernel that is as accurate as Householder QR, yet requires only messages between $P$ MPI processes, independently of the number of columns in the multivector.
TSQR works independently of the particular multivector implementation, and interfaces to the latter via an adapter class. Each multivector type MV needs its own adapter class. The specialization of MultiVecTraits for MV refers to its corresponding adapter class as its tsqr_adaptor_type
[sic; sorry about the lack of standard spelling of "adapter"] typedef. For examples, please refer to the Epetra_MultiVector and Tpetra::MultiVector specializations of Anasazi::MultiVecTraits.
Nevertheless, there may be multivector types for which a TSQR adapter has not yet been written. This "stub" adapter implements the interface that TSQR adapters must implement, but all of its methods throw std::logic_error to indicate that this is a stub. Thus, it allows Anasazi classes like TsqrOrthoManagerImpl to compile successfully for unsupported MV types. This in turn allows OrthoManagerFactory to be templated on the MV type.
Definition at line 84 of file AnasaziStubTsqrAdapter.hpp.
|
inline |
Constructor (that accepts a parameter list).
plist | [in] List of parameters for configuring TSQR. The specific parameter keys that are read depend on the TSQR implementation. For details, call getValidParameters() and examine the documentation embedded therein. |
Definition at line 99 of file AnasaziStubTsqrAdapter.hpp.
|
inline |
Default constructor (stub; throws std::logic_error).
Definition at line 107 of file AnasaziStubTsqrAdapter.hpp.
|
inline |
Copy constructor (throws std::logic_error).
Definition at line 115 of file AnasaziStubTsqrAdapter.hpp.
|
inlinevirtual |
Get list of valid default parameters (stub; throws std::logic_error).
Reimplemented from Teuchos::ParameterListAcceptor.
Definition at line 125 of file AnasaziStubTsqrAdapter.hpp.
|
inlinevirtual |
Set parameters (stub; throws std::logic_error).
Implements Teuchos::ParameterListAcceptor.
Definition at line 134 of file AnasaziStubTsqrAdapter.hpp.
|
inline |
Compute QR factorization [Q,R] = qr(A,0) (stub; throws std::logic_error).
Definition at line 143 of file AnasaziStubTsqrAdapter.hpp.
|
inline |
Rank-revealing decomposition (stub; does nothing).
Definition at line 155 of file AnasaziStubTsqrAdapter.hpp.