|
| template<class TargetDeviceType , class AccessType > |
| std::conditional< std::is_same< typenamedual_view_type::t_dev_um::execution_space::memory_space, typenameTargetDeviceType::memory_space >::value, typenamedual_view_type::t_dev_um, typenamedual_view_type::t_host_um >::type | getLocalView (AccessType access_type) const |
| |
| virtual void | setSeed (unsigned int seed)=0 |
| | Set seed for Random function.
|
| |
| virtual void | randomize (bool bUseXpetraImplementation=false)=0 |
| | Set multi-vector values to random numbers.
|
| |
| virtual void | randomize (const Scalar &minVal, const Scalar &maxVal, bool bUseXpetraImplementation=false)=0 |
| | Set multi-vector values to random numbers.
|
| |
| virtual void | Xpetra_randomize () |
| | Set multi-vector values to random numbers. XPetra implementation.
|
| |
| virtual void | Xpetra_randomize (const Scalar &minVal, const Scalar &maxVal) |
| | Set multi-vector values to random numbers. XPetra implementation.
|
| |
| virtual dual_view_type::t_host_const_um | getLocalViewHost (Tpetra::Access::ReadOnlyStruct) const |
| |
| virtual dual_view_type::t_dev_const_um | getLocalViewDevice (Tpetra::Access::ReadOnlyStruct) const |
| |
| virtual dual_view_type::t_host_um | getLocalViewHost (Tpetra::Access::OverwriteAllStruct) const |
| |
| virtual dual_view_type::t_dev_um | getLocalViewDevice (Tpetra::Access::OverwriteAllStruct) const |
| |
| virtual dual_view_type::t_host_um | getLocalViewHost (Tpetra::Access::ReadWriteStruct) const |
| |
| virtual dual_view_type::t_dev_um | getLocalViewDevice (Tpetra::Access::ReadWriteStruct) const |
| |
| virtual | ~MultiVector () |
| | Destructor.
|
| |
| MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | operator= (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &rhs) |
| | Assignment operator: Does a deep copy.
|
| |
| virtual void | replaceGlobalValue (GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)=0 |
| | Replace value, using global (row) index.
|
| |
| virtual void | sumIntoGlobalValue (GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)=0 |
| | Add value to existing value, using global (row) index.
|
| |
| virtual void | replaceLocalValue (LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)=0 |
| | Replace value, using local (row) index.
|
| |
| virtual void | sumIntoLocalValue (LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)=0 |
| | Add value to existing value, using local (row) index.
|
| |
| virtual void | putScalar (const Scalar &value)=0 |
| | Set all values in the multivector with the given value.
|
| |
| virtual Teuchos::RCP< const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getVector (size_t j) const =0 |
| | Return a Vector which is a const view of column j.
|
| |
| virtual Teuchos::RCP< Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getVectorNonConst (size_t j)=0 |
| | Return a Vector which is a nonconst view of column j.
|
| |
| virtual Teuchos::ArrayRCP< const Scalar > | getData (size_t j) const =0 |
| | Const view of the local values in a particular vector of this multivector.
|
| |
| virtual Teuchos::ArrayRCP< Scalar > | getDataNonConst (size_t j)=0 |
| | View of the local values in a particular vector of this multivector.
|
| |
| virtual void | dot (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Teuchos::ArrayView< Scalar > &dots) const =0 |
| | Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]).
|
| |
| virtual void | abs (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A)=0 |
| | Put element-wise absolute values of input Multi-vector in target: A = abs(this).
|
| |
| virtual void | reciprocal (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A)=0 |
| | Put element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j).
|
| |
| virtual void | scale (const Scalar &alpha)=0 |
| | Scale the current values of a multi-vector, this = alpha*this.
|
| |
| virtual void | scale (Teuchos::ArrayView< const Scalar > alpha)=0 |
| | Scale the current values of a multi-vector, this[j] = alpha[j]*this[j].
|
| |
| virtual void | update (const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta)=0 |
| | Update multi-vector values with scaled values of A, this = beta*this + alpha*A.
|
| |
| virtual void | update (const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, const Scalar &gamma)=0 |
| | Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B.
|
| |
| virtual void | norm1 (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const =0 |
| | Compute 1-norm of each vector in multi-vector.
|
| |
| virtual void | norm2 (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const =0 |
| |
| virtual void | normInf (const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const =0 |
| | Compute Inf-norm of each vector in multi-vector.
|
| |
| virtual void | meanValue (const Teuchos::ArrayView< Scalar > &means) const =0 |
| |
| virtual void | multiply (Teuchos::ETransp transA, Teuchos::ETransp transB, const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, const Scalar &beta)=0 |
| | Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B).
|
| |
| virtual void | elementWiseMultiply (Scalar scalarAB, const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, Scalar scalarThis)=0 |
| | Multiply a Vector A elementwise by a MultiVector B.
|
| |
| virtual size_t | getNumVectors () const =0 |
| | Number of columns in the multivector.
|
| |
| virtual size_t | getLocalLength () const =0 |
| | Local number of rows on the calling process.
|
| |
| virtual global_size_t | getGlobalLength () const =0 |
| | Global number of rows in the multivector.
|
| |
| virtual bool | isSameSize (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &vec) const =0 |
| |
| virtual void | replaceMap (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &map)=0 |
| |
| virtual | ~DistObject () |
| | Destructor.
|
| |
| virtual void | doImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)=0 |
| | Import data into this object using an Import object ("forward mode").
|
| |
| virtual void | beginImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
| | Import data into this object using an Import object ("forward mode").
|
| |
| virtual void | endImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
| | Import data into this object using an Import object ("forward mode").
|
| |
| virtual void | doExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)=0 |
| | Export data into this object using an Export object ("forward mode").
|
| |
| virtual void | beginExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
| | Export data into this object using an Export object ("forward mode").
|
| |
| virtual void | endExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
| | Export data into this object using an Export object ("forward mode").
|
| |
| virtual void | doImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)=0 |
| | Import data into this object using an Export object ("reverse mode").
|
| |
| virtual void | beginImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
| | Import data into this object using an Export object ("reverse mode").
|
| |
| virtual void | endImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
| | Import data into this object using an Export object ("reverse mode").
|
| |
| virtual void | doExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)=0 |
| | Export data into this object using an Import object ("reverse mode").
|
| |
| virtual void | beginExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
| | Export data into this object using an Import object ("reverse mode").
|
| |
| virtual void | endExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
| | Export data into this object using an Import object ("reverse mode").
|
| |
| virtual Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | getMap () const =0 |
| | The Map describing the parallel distribution of this object.
|
| |
| 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 |
| |