|
| virtual void | dot (const MultiVector &A, const Teuchos::ArrayView< Scalar > &dots) const |
| | Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]). More...
|
| |
| virtual Scalar | dot (const Vector &A) const |
| |
| virtual void | abs (const MultiVector &A) |
| | Put element-wise absolute values of input vector in target: A = abs(this). More...
|
| |
| virtual void | reciprocal (const MultiVector &A) |
| | Put element-wise reciprocal values of input vector in target, this(i,j) = 1/A(i,j). More...
|
| |
| virtual void | scale (const Scalar &alpha) |
| | Scale the current values of a vector, this = alpha*this. More...
|
| |
| virtual void | scale (Teuchos::ArrayView< const Scalar > alpha) |
| | Scale the current values of a vector, this[j] = alpha[j]*this[j]. More...
|
| |
| virtual void | update (const Scalar &alpha, const MultiVector &A, const Scalar &beta) |
| |
| virtual void | update (const Scalar &alpha, const MultiVector &A, const Scalar &beta, const MultiVector &B, const Scalar &gamma) |
| | Update vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B. More...
|
| |
| virtual Teuchos::ScalarTraits< Scalar >::magnitudeType | norm1 () const |
| | Compute 1-norm of vector. More...
|
| |
| virtual Teuchos::ScalarTraits< Scalar >::magnitudeType | norm2 () const |
| | Compute 2-norm of vector. More...
|
| |
| virtual Teuchos::ScalarTraits< Scalar >::magnitudeType | normInf () const |
| | Compute Inf-norm in vector. 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 > &means) const |
| | Compute mean (average) value of each vector in vector. The outcome of this routine is undefined for non-floating point scalar types (e.g., int). More...
|
| |
| virtual Scalar | meanValue () const |
| |
| virtual void | multiply (Teuchos::ETransp transA, Teuchos::ETransp transB, const Scalar &alpha, const Vector &A, const Vector &B, const Scalar &beta) |
| | Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B). More...
|
| |
| virtual void | multiply (Teuchos::ETransp transA, Teuchos::ETransp transB, const Scalar &alpha, const MultiVector &A, const MultiVector &B, const Scalar &beta) |
| |
| virtual void | elementWiseMultiply (Scalar scalarAB, const Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const MultiVector &B, Scalar scalarThis) |
| |
| virtual void | elementWiseMultiply (Scalar scalarAB, const Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Vector &B, Scalar scalarThis) |
| | Element-wise multiply of a Vector A with a Vector B. More...
|
| |
|
| virtual | ~Vector () |
| | Destructor. More...
|
| |
| virtual void | replaceGlobalValue (typename Map< Map<>::local_ordinal_type >::global_ordinal_type globalRow, const double &value)=0 |
| | Replace current value at the specified location with specified value. More...
|
| |
| virtual void | sumIntoGlobalValue (typename Map< Map<>::local_ordinal_type >::global_ordinal_type globalRow, const double &value)=0 |
| | Adds specified value to existing value at the specified location. More...
|
| |
| virtual void | replaceLocalValue (Map<>::local_ordinal_type myRow, const double &value)=0 |
| | Replace current value at the specified location with specified values. More...
|
| |
| virtual void | sumIntoLocalValue (Map<>::local_ordinal_type myRow, const double &value)=0 |
| | Adds specified value to existing value at the specified location. More...
|
| |
| virtual double | dot (const Vector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &a) const=0 |
| | Computes dot product of this Vector against input Vector x. More...
|
| |
| virtual Teuchos::ScalarTraits< double >::magnitudeType | norm1 () const=0 |
| | Return 1-norm of this Vector. More...
|
| |
| virtual Teuchos::ScalarTraits< double >::magnitudeType | norm2 () const=0 |
| | Compute 2-norm of this Vector. More...
|
| |
| virtual Teuchos::ScalarTraits< double >::magnitudeType | normInf () const=0 |
| | Compute Inf-norm of this Vector. More...
|
| |
| virtual double | meanValue () const=0 |
| | Compute mean (average) value of this Vector. More...
|
| |
| virtual std::string | description () const=0 |
| | Return a simple one-line description of this object. More...
|
| |
| Teuchos::RCP< const Map > | getMap () const |
| | Access function for the underlying Map this DistObject was constructed with. More...
|
| |
| Teuchos::RCP< const Xpetra::BlockedMap< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > > | 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...
|
| |
| | BlockedMultiVector (const Teuchos::RCP< const BlockedMap > &map, size_t NumVectors, bool zeroOut=true) |
| | Constructor. More...
|
| |
| | BlockedMultiVector (Teuchos::RCP< const Xpetra::BlockedMap< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > > bmap, Teuchos::RCP< const MultiVector > v) |
| |
| | BlockedMultiVector (Teuchos::RCP< const Xpetra::BlockedMap< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > > bmap, Teuchos::RCP< MultiVector > v) |
| |
| | BlockedMultiVector (Teuchos::RCP< const Xpetra::MapExtractor< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > > mapExtractor, Teuchos::RCP< const MultiVector > v) |
| |
| | BlockedMultiVector (Teuchos::RCP< const Xpetra::MapExtractor< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > > mapExtractor, Teuchos::RCP< MultiVector > v) |
| |
| | BlockedMultiVector (const Teuchos::RCP< const BlockedMap > &map, std::vector< Teuchos::RCP< MultiVector > > &vin) |
| |
| virtual | ~BlockedMultiVector () |
| | Destructor. More...
|
| |
| BlockedMultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > & | operator= (const MultiVector &rhs) |
| | Assignment operator: Does a deep copy. More...
|
| |
| virtual void | replaceGlobalValue (typename Map< Map<>::local_ordinal_type >::global_ordinal_type globalRow, size_t vectorIndex, const double &value) |
| | Replace value, using global (row) index. More...
|
| |
| virtual void | sumIntoGlobalValue (typename Map< Map<>::local_ordinal_type >::global_ordinal_type globalRow, size_t vectorIndex, const double &value) |
| | Add value to existing value, using global (row) index. More...
|
| |
| virtual void | replaceLocalValue (Map<>::local_ordinal_type myRow, size_t vectorIndex, const double &value) |
| | Replace value, using local (row) index. More...
|
| |
| virtual void | sumIntoLocalValue (Map<>::local_ordinal_type myRow, size_t vectorIndex, const double &value) |
| | Add value to existing value, using local (row) index. More...
|
| |
| virtual void | putScalar (const double &value) |
| | Set all values in the multivector with the given value. More...
|
| |
| virtual void | dot (const MultiVector &A, const Teuchos::ArrayView< double > &dots) const |
| | Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]). More...
|
| |
| virtual void | scale (const double &alpha) |
| | Scale the current values of a multi-vector, this = alpha*this. More...
|
| |
| virtual void | scale (Teuchos::ArrayView< const double > alpha) |
| | Scale the current values of a multi-vector, this[j] = alpha[j]*this[j]. More...
|
| |
| virtual void | update (const double &alpha, const MultiVector &A, const double &beta) |
| | Update multi-vector values with scaled values of A, this = beta*this + alpha*A. More...
|
| |
| virtual void | update (const double &alpha, const MultiVector &A, const double &beta, const MultiVector &B, const double &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< double >::magnitudeType > &norms) const |
| | Compute 1-norm of each vector in multi-vector. More...
|
| |
| virtual void | norm2 (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< double >::magnitudeType > &norms) const |
| |
| virtual void | normInf (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< double >::magnitudeType > &norms) const |
| | Compute Inf-norm of each vector in multi-vector. More...
|
| |
| virtual void | meanValue (const Teuchos::ArrayView< double > &means) 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 transA, Teuchos::ETransp transB, const double &alpha, const MultiVector &A, const MultiVector &B, const double &beta) |
| | Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B). More...
|
| |
| virtual void | elementWiseMultiply (double scalarAB, const Xpetra::Vector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A, const MultiVector &B, double scalarThis) |
| | Element-wise multiply of a Vector A with a MultiVector B. More...
|
| |
| 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< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &vec) const |
| | Local number of rows on the calling process. More...
|
| |
| virtual std::string | description () const |
| | A simple one-line description of this object. More...
|
| |
| virtual void | doImport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &source, const Import &importer, CombineMode CM) |
| | Import. More...
|
| |
| virtual void | doImport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &source, const Export &exporter, CombineMode CM) |
| | Import (using an Exporter). More...
|
| |
| virtual void | doExport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &dest, const Import &importer, CombineMode CM) |
| | Export. More...
|
| |
| virtual void | doExport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &dest, const Export &exporter, CombineMode CM) |
| | Export (using an Importer). More...
|
| |
| virtual | ~MultiVector () |
| | Destructor. More...
|
| |
| MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > & | operator= (const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &rhs) |
| | Assignment operator: Does a deep copy. More...
|
| |
| virtual void | dot (const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A, const Teuchos::ArrayView< double > &dots) const=0 |
| | Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]). More...
|
| |
| virtual void | abs (const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A)=0 |
| | Put element-wise absolute values of input Multi-vector in target: A = abs(this). More...
|
| |
| virtual void | reciprocal (const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A)=0 |
| | Put element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j). More...
|
| |
| virtual void | update (const double &alpha, const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A, const double &beta)=0 |
| | Update multi-vector values with scaled values of A, this = beta*this + alpha*A. More...
|
| |
| virtual void | update (const double &alpha, const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A, const double &beta, const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &B, const double &gamma)=0 |
| | Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B. More...
|
| |
| virtual void | multiply (Teuchos::ETransp transA, Teuchos::ETransp transB, const double &alpha, const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A, const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &B, const double &beta)=0 |
| | Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B). More...
|
| |
| virtual void | elementWiseMultiply (double scalarAB, const Vector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &A, const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &B, double scalarThis)=0 |
| | Element-wise multiply of a Vector A with a MultiVector B. More...
|
| |
| virtual void | replaceMap (const RCP< const Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > > &map)=0 |
| |
| virtual | ~DistObject () |
| | Destructor. More...
|
| |
| virtual void | doImport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &source, const Import< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &importer, CombineMode CM)=0 |
| | Import data into this object using an Import object ("forward mode"). More...
|
| |
| virtual void | doImport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &source, const Export< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &exporter, CombineMode CM)=0 |
| | Import data into this object using an Export object ("reverse mode"). More...
|
| |
| virtual void | doExport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &source, const Export< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &exporter, CombineMode CM)=0 |
| | Export data into this object using an Export object ("forward mode"). More...
|
| |
| virtual void | doExport (const DistObject< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &source, const Import< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &importer, CombineMode CM)=0 |
| | Export data into this object using an Import object ("reverse mode"). More...
|
| |
| void | describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const |
| |
| virtual | ~Describable () |
| |
| DescribableStreamManipulatorState | describe (const Describable &describable, const EVerbosityLevel verbLevel=Describable::verbLevel_default) |
| |
| std::ostream & | operator<< (std::ostream &os, const DescribableStreamManipulatorState &d) |
| |
| 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 |
| |
| static const EVerbosityLevel | verbLevel_default |
| |
| virtual void | assign (const MultiVector< double, Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type, typename Map< Map<>::local_ordinal_type, typename Map< Map<>::local_ordinal_type >::global_ordinal_type >::node_type > &rhs)=0 |
| | Implementation of the assignment operator (operator=); does a deep copy. More...
|
| |