#include <Xpetra_BlockedMultiVector.hpp>
Public Types | |
typedef Scalar | scalar_type |
typedef LocalOrdinal | local_ordinal_type |
typedef GlobalOrdinal | global_ordinal_type |
typedef Node | node_type |
Public Types inherited from Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
typedef Scalar | scalar_type |
typedef LocalOrdinal | local_ordinal_type |
typedef GlobalOrdinal | global_ordinal_type |
typedef Node | node_type |
Public Member Functions | |
Teuchos::RCP< const Map > | getMap () const |
Access function for the underlying Map this DistObject was constructed with. More... | |
Teuchos::RCP< const Xpetra::BlockedMap < LocalOrdinal, GlobalOrdinal, Node > > | getBlockedMap () const |
Access function for the underlying Map this DistObject was constructed with. More... | |
Teuchos::RCP< MultiVector > | getMultiVector (size_t r) const |
return partial multivector associated with block row r More... | |
Teuchos::RCP< MultiVector > | getMultiVector (size_t r, bool bThyraMode) const |
return partial multivector associated with block row r More... | |
void | setMultiVector (size_t r, Teuchos::RCP< const MultiVector > v, bool bThyraMode) |
set partial multivector associated with block row r More... | |
Teuchos::RCP< MultiVector > | Merge () const |
merge BlockedMultiVector blocks to a single MultiVector More... | |
Public Member Functions inherited from Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
virtual | ~MultiVector () |
Destructor. More... | |
MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | operator= (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &rhs) |
Assignment operator: Does a deep copy. More... | |
Public Member Functions inherited from Xpetra::DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
virtual | ~DistObject () |
Destructor. More... | |
Public Member Functions inherited from Teuchos::Describable | |
void | describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const |
virtual | ~Describable () |
LabeledObject () | |
virtual | ~LabeledObject () |
virtual void | setObjectLabel (const std::string &objectLabel) |
virtual std::string | getObjectLabel () const |
DescribableStreamManipulatorState | describe (const Describable &describable, const EVerbosityLevel verbLevel=Describable::verbLevel_default) |
std::ostream & | operator<< (std::ostream &os, const DescribableStreamManipulatorState &d) |
Protected Member Functions | |
virtual void | assign (const MultiVector &rhs) |
Implementation of the assignment operator (operator=); does a deep copy. More... | |
Private Member Functions | |
void | ExtractVector (RCP< const MultiVector > &full, size_t block, RCP< MultiVector > &partial) const |
void | ExtractVector (RCP< MultiVector > &full, size_t block, RCP< MultiVector > &partial) const |
RCP< MultiVector > | ExtractVector (RCP< const MultiVector > &full, size_t block, bool bThyraMode=false) const |
RCP< MultiVector > | ExtractVector (RCP< MultiVector > &full, size_t block, bool bThyraMode=false) const |
void | ExtractVector (const MultiVector &full, size_t block, MultiVector &partial) const |
void | InsertVector (const MultiVector &partial, size_t block, MultiVector &full, bool bThyraMode=false) const |
void | InsertVector (RCP< const MultiVector > partial, size_t block, RCP< MultiVector > full, bool bThyraMode=false) const |
void | InsertVector (RCP< MultiVector > partial, size_t block, RCP< MultiVector > full, bool bThyraMode=false) const |
Private Attributes | |
Teuchos::RCP< const BlockedMap > | map_ |
blocked map containing the sub block maps (either thyra or xpetra mode) More... | |
std::vector< Teuchos::RCP < MultiVector > > | vv_ |
array containing RCPs of the partial vectors More... | |
size_t | numVectors_ |
number of vectors (columns in multi vector) More... | |
Constructor/Destructor Methods | |
BlockedMultiVector (const Teuchos::RCP< const BlockedMap > &map, size_t NumVectors, bool zeroOut=true) | |
Constructor. More... | |
BlockedMultiVector (Teuchos::RCP< const Xpetra::BlockedMap< LocalOrdinal, GlobalOrdinal, Node > > bmap, Teuchos::RCP< const MultiVector > v) | |
BlockedMultiVector (Teuchos::RCP< const Xpetra::BlockedMap< LocalOrdinal, GlobalOrdinal, Node > > bmap, Teuchos::RCP< MultiVector > v) | |
BlockedMultiVector (Teuchos::RCP< const Xpetra::MapExtractor< Scalar, LocalOrdinal, GlobalOrdinal, Node > > mapExtractor, Teuchos::RCP< const MultiVector > v) | |
BlockedMultiVector (Teuchos::RCP< const Xpetra::MapExtractor< Scalar, LocalOrdinal, GlobalOrdinal, Node > > mapExtractor, Teuchos::RCP< MultiVector > v) | |
BlockedMultiVector (const Teuchos::RCP< const BlockedMap > &map, std::vector< Teuchos::RCP< MultiVector > > &vin) | |
virtual | ~BlockedMultiVector () |
Destructor. More... | |
BlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | operator= (const MultiVector &rhs) |
Assignment operator: Does a deep copy. More... | |
Post-construction modification routines | |
virtual void | replaceGlobalValue (GlobalOrdinal, size_t, const Scalar &) |
Replace value, using global (row) index. More... | |
virtual void | sumIntoGlobalValue (GlobalOrdinal, size_t, const Scalar &) |
Add value to existing value, using global (row) index. More... | |
virtual void | replaceLocalValue (LocalOrdinal, size_t, const Scalar &) |
Replace value, using local (row) index. More... | |
virtual void | sumIntoLocalValue (LocalOrdinal, size_t, const Scalar &) |
Add value to existing value, using local (row) index. More... | |
virtual void | putScalar (const Scalar &value) |
Set all values in the multivector with the given value. More... | |
Data Copy and View get methods | |
virtual Teuchos::RCP< const Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getVector (size_t j) const |
Return a Vector which is a const view of column j. More... | |
virtual Teuchos::RCP < Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getVectorNonConst (size_t j) |
Return a Vector which is a nonconst view of column j. More... | |
virtual Teuchos::ArrayRCP < const Scalar > | getData (size_t j) const |
Const view of the local values in a particular vector of this multivector. More... | |
virtual Teuchos::ArrayRCP< Scalar > | getDataNonConst (size_t j) |
View of the local values in a particular vector of this multivector. More... | |
Mathematical methods | |
virtual void | dot (const MultiVector &, const Teuchos::ArrayView< Scalar > &) const |
Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]). More... | |
virtual void | abs (const MultiVector &) |
Put element-wise absolute values of input Multi-vector in target: A = abs(this). More... | |
virtual void | reciprocal (const MultiVector &) |
Put element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j). More... | |
virtual void | scale (const Scalar &alpha) |
Scale the current values of a multi-vector, this = alpha*this. More... | |
virtual void | scale (Teuchos::ArrayView< const Scalar > alpha) |
Scale the current values of a multi-vector, this[j] = alpha[j]*this[j]. More... | |
virtual void | update (const Scalar &alpha, const MultiVector &A, const Scalar &beta) |
Update multi-vector values with scaled values of A, this = beta*this + alpha*A. More... | |
virtual void | update (const Scalar &alpha, const MultiVector &A, const Scalar &beta, const MultiVector &B, const Scalar &gamma) |
Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B. More... | |
virtual void | norm1 (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const |
Compute 1-norm of each vector in multi-vector. More... | |
virtual void | norm2 (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const |
virtual void | normInf (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const |
Compute Inf-norm of each vector in multi-vector. More... | |
virtual void | meanValue (const Teuchos::ArrayView< Scalar > &) const |
Compute mean (average) value of each vector in multi-vector. The outcome of this routine is undefined for non-floating point scalar types (e.g., int). More... | |
virtual void | multiply (Teuchos::ETransp, Teuchos::ETransp, const Scalar &, const MultiVector &, const MultiVector &, const Scalar &) |
Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B). More... | |
virtual void | elementWiseMultiply (Scalar scalarAB, const Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const MultiVector &B, Scalar scalarThis) |
Element-wise multiply of a Vector A with a MultiVector B. More... | |
Attribute access functions | |
virtual size_t | getNumVectors () const |
Number of columns in the multivector. More... | |
virtual size_t | getLocalLength () const |
Local number of rows on the calling process. More... | |
virtual global_size_t | getGlobalLength () const |
Global number of rows in the multivector. More... | |
virtual bool | isSameSize (const Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &vec) const |
Local number of rows on the calling process. More... | |
Overridden from Teuchos::Describable | |
virtual std::string | description () const |
A simple one-line description of this object. More... | |
virtual void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const |
Print the object with the given verbosity level to a FancyOStream. More... | |
virtual void | replaceMap (const RCP< const Map > &map) |
virtual void | doImport (const DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > &, const Import &, CombineMode) |
Import. More... | |
virtual void | doExport (const DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > &, const Import &, CombineMode) |
Export. More... | |
virtual void | doImport (const DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > &, const Export &, CombineMode) |
Import (using an Exporter). More... | |
virtual void | doExport (const DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > &, const Export &, CombineMode) |
Export (using an Importer). More... | |
Xpetra specific | |
virtual void | setSeed (unsigned int seed) |
Set seed for Random function. More... | |
virtual void | randomize (bool bUseXpetraImplementation=false) |
Set multi-vector values to random numbers. More... | |
virtual void | Xpetra_randomize () |
Set multi-vector values to random numbers. XPetra implementation. More... | |
Additional Inherited Members | |
Static Public Attributes inherited from Teuchos::Describable | |
static const EVerbosityLevel | verbLevel_default |
Definition at line 72 of file Xpetra_BlockedMultiVector.hpp.
typedef Scalar Xpetra::BlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >::scalar_type |
Definition at line 76 of file Xpetra_BlockedMultiVector.hpp.
typedef LocalOrdinal Xpetra::BlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >::local_ordinal_type |
Definition at line 77 of file Xpetra_BlockedMultiVector.hpp.
typedef GlobalOrdinal Xpetra::BlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >::global_ordinal_type |
Definition at line 78 of file Xpetra_BlockedMultiVector.hpp.
typedef Node Xpetra::BlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >::node_type |
Definition at line 79 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Constructor.
Const version of constructor which accepts a const version of a blocked map
map | BlockedMap defining the block structure of the multi vector |
NumVectors | Number of vector columns in multi vector |
zeroOut | If true initialize multivector with zeros |
Definition at line 99 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Const version of constructor which accepts a const version of the multi-vector
bmap | BlockedMap object containing information about the block splitting |
v | MultiVector that is to be splitted into a blocked multi vector |
Definition at line 124 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
NonConst version of constructor which accepts a const version of the multi-vector
bmap | BlockedMap object containing information about the block splitting |
v | MultiVector that is to be splitted into a blocked multi vector |
Definition at line 154 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Const version of constructor which accepts a const version of the multi-vector
mapExtractor | MapExtractor object containing information about the block splitting |
v | MultiVector that is to be splitted into a blocked multi vector |
Definition at line 182 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Non-const version of constructor which accepts a non-const version of the multi-vector
mapExtractor | MapExtractor object containing information about the block splitting |
v | MultiVector that is to be splitted into a blocked multi vector |
Definition at line 212 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Constructor to build a blocked multivector from a blocked map and component vectors
map | BlockedMap object containing information about the block splitting |
vin | A std::vector of RCPs to component vectors |
Definition at line 238 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Destructor.
Definition at line 247 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Assignment operator: Does a deep copy.
The assignment operator does a deep copy, just like subclasses' copy constructors.
*this
and the input argument are instances of the same subclass. Definition at line 262 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Replace value, using global (row) index.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 272 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Add value to existing value, using global (row) index.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 277 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Replace value, using local (row) index.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 282 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Add value to existing value, using local (row) index.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 287 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Set all values in the multivector with the given value.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 292 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Return a Vector which is a const view of column j.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 305 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Return a Vector which is a nonconst view of column j.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 318 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Const view of the local values in a particular vector of this multivector.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 325 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
View of the local values in a particular vector of this multivector.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 334 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]).
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 348 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Put element-wise absolute values of input Multi-vector in target: A = abs(this).
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 353 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Put element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j).
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 358 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Scale the current values of a multi-vector, this = alpha*this.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 363 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Scale the current values of a multi-vector, this[j] = alpha[j]*this[j].
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 373 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Update multi-vector values with scaled values of A, this = beta*this + alpha*A.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 383 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 443 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Compute 1-norm of each vector in multi-vector.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 467 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 483 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Compute Inf-norm of each vector in multi-vector.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 503 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Compute mean (average) value of each vector in multi-vector. The outcome of this routine is undefined for non-floating point scalar types (e.g., int).
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 519 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B).
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 524 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Element-wise multiply of a Vector A with a MultiVector B.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 529 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Number of columns in the multivector.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 565 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Local number of rows on the calling process.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 570 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Global number of rows in the multivector.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 576 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Local number of rows on the calling process.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 582 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
A simple one-line description of this object.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >, and Xpetra::ReorderedBlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 603 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Print the object with the given verbosity level to a FancyOStream.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >, and Xpetra::ReorderedBlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 608 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 614 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Implements Xpetra::DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 639 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Implements Xpetra::DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 644 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Import (using an Exporter).
Implements Xpetra::DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 649 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Export (using an Importer).
Implements Xpetra::DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 654 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Set seed for Random function.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 664 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Set multi-vector values to random numbers.
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 671 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Set multi-vector values to random numbers. XPetra implementation.
Reimplemented from Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 678 of file Xpetra_BlockedMultiVector.hpp.
|
inlinevirtual |
Access function for the underlying Map this DistObject was constructed with.
Implements Xpetra::DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 728 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
Access function for the underlying Map this DistObject was constructed with.
Definition at line 731 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
return partial multivector associated with block row r
Definition at line 734 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
return partial multivector associated with block row r
Definition at line 741 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
set partial multivector associated with block row r
Definition at line 750 of file Xpetra_BlockedMultiVector.hpp.
|
inline |
merge BlockedMultiVector blocks to a single MultiVector
Definition at line 766 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprotectedvirtual |
Implementation of the assignment operator (operator=); does a deep copy.
Each subclass must implement this. This includes Xpetra::EpetraMultiVector and Xpetra::TpetraMultiVector as well as Xpetra::BockedMultiVector
Implements Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Reimplemented in Xpetra::BlockedVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 795 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 842 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 843 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 845 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 876 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 906 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 913 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 953 of file Xpetra_BlockedMultiVector.hpp.
|
inlineprivate |
Definition at line 963 of file Xpetra_BlockedMultiVector.hpp.
|
private |
blocked map containing the sub block maps (either thyra or xpetra mode)
Definition at line 975 of file Xpetra_BlockedMultiVector.hpp.
|
private |
array containing RCPs of the partial vectors
Definition at line 976 of file Xpetra_BlockedMultiVector.hpp.
|
private |
number of vectors (columns in multi vector)
Definition at line 977 of file Xpetra_BlockedMultiVector.hpp.