#include <AnasaziMultiVecTraits.hpp>
Static Public Member Functions | |
Creation methods | |
| Teuchos::RefCountPtr< MV > | Clone (const MV &mv, const int numvecs) |
Creates a new empty MV containing numvecs columns. | |
| Teuchos::RefCountPtr< MV > | CloneCopy (const MV &mv) |
Creates a new MV and copies contents of mv into the new vector (deep copy). | |
| Teuchos::RefCountPtr< MV > | CloneCopy (const MV &mv, const std::vector< int > &index) |
Creates a new MV and copies the selected contents of mv into the new vector (deep copy). | |
| Teuchos::RefCountPtr< MV > | CloneView (MV &mv, const std::vector< int > &index) |
Creates a new MV that shares the selected contents of mv (shallow copy). | |
| Teuchos::RefCountPtr< const MV > | CloneView (const MV &mv, const std::vector< int > &index) |
Creates a new const MV that shares the selected contents of mv (shallow copy). | |
Attribute methods | |
| int | GetVecLength (const MV &mv) |
Obtain the vector length of mv. | |
| int | GetNumberVecs (const MV &mv) |
Obtain the number of vectors in mv. | |
Update methods | |
| void | MvTimesMatAddMv (const ScalarType alpha, const MV &A, const Teuchos::SerialDenseMatrix< int, ScalarType > &B, const ScalarType beta, MV &mv) |
Update mv with . | |
| void | MvAddMv (const ScalarType alpha, const MV &A, const ScalarType beta, const MV &B, MV &mv) |
Replace mv with . | |
| void | MvTransMv (const ScalarType alpha, const MV &A, const MV &mv, Teuchos::SerialDenseMatrix< int, ScalarType > &B) |
Compute a dense matrix B through the matrix-matrix multiply . | |
| void | MvDot (const MV &mv, const MV &A, std::vector< ScalarType > *b) |
Compute a vector b where the components are the individual dot-products of the i-th columns of A and mv, i.e. . | |
| void | MvScale (MV &mv, const ScalarType alpha) |
Scale each element of the vectors in *this with alpha. | |
| void | MvScale (MV &mv, const std::vector< ScalarType > &alpha) |
Scale each element of the i-th vector in *this with alpha[i]. | |
Norm method | |
| void | MvNorm (const MV &mv, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > *normvec) |
Compute the 2-norm of each individual vector of mv. Upon return, normvec[i] holds the value of , the i-th column of mv. | |
Initialization methods | |
| void | SetBlock (const MV &A, const std::vector< int > &index, MV &mv) |
Copy the vectors in A to a set of vectors in mv indicated by the indices given in index. | |
| void | MvRandom (MV &mv) |
Replace the vectors in mv with random vectors. | |
| void | MvInit (MV &mv, const ScalarType alpha=Teuchos::ScalarTraits< ScalarType >::zero()) |
Replace each element of the vectors in mv with alpha. | |
Print method | |
| void | MvPrint (const MV &mv, ostream &os) |
Print the mv multi-vector to the os output stream. | |
An adapter for this traits class must exist for the MV type. If not, this class will produce a compile-time error.
BlockDavidson/BlockDavidsonEpetraEx.cpp, BlockDavidson/BlockDavidsonEpetraExGen.cpp, and BlockKrylovSchur/BlockKrylovSchurEpetraEx.cpp.
Definition at line 66 of file AnasaziMultiVecTraits.hpp.
|
||||||||||||||||
|
Creates a new empty
Definition at line 77 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||
|
Creates a new
Definition at line 84 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Creates a new
The copied vectors from
Definition at line 92 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Creates a new
The index of the
Definition at line 100 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Creates a new const
The index of the
Definition at line 108 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||
|
Obtain the vector length of
Definition at line 117 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||
|
Obtain the number of vectors in
Definition at line 121 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||||||||||||||
|
Update
Definition at line 131 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||||||||||||||
|
Replace
Definition at line 138 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||||||||||
|
Compute a dense matrix
Definition at line 143 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||||||
|
Compute a vector
Definition at line 152 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Scale each element of the vectors in
Definition at line 161 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Scale each element of the
Definition at line 166 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Compute the 2-norm of each individual vector of
Definition at line 176 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||||||
|
Copy the vectors in
The Definition at line 188 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||
|
Replace the vectors in
Definition at line 193 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Replace each element of the vectors in
Definition at line 198 of file AnasaziMultiVecTraits.hpp. |
|
||||||||||||||||
|
Print the
Definition at line 208 of file AnasaziMultiVecTraits.hpp. |
1.3.9.1