Xpetra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Xpetra_MultiVector_decl.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // Xpetra: A linear algebra interface package
4 //
5 // Copyright 2012 NTESS and the Xpetra contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef XPETRA_MULTIVECTOR_DECL_HPP
11 #define XPETRA_MULTIVECTOR_DECL_HPP
12 
13 #include <Teuchos_LabeledObject.hpp>
14 #include <Teuchos_DataAccess.hpp>
15 #include <Teuchos_BLAS_types.hpp>
16 #include <Teuchos_Range1D.hpp>
17 
18 #include "Xpetra_ConfigDefs.hpp"
19 #include "Xpetra_DistObject.hpp"
20 #include "Xpetra_Map_decl.hpp"
21 
22 #include "Xpetra_Access.hpp"
23 
24 #include <Kokkos_Core.hpp>
25 #include <Kokkos_DualView.hpp>
26 #include <Kokkos_ArithTraits.hpp>
27 
28 namespace Xpetra {
29 
30 #ifndef DOXYGEN_SHOULD_SKIP_THIS
31 // forward declaration of Vector, needed to prevent circular inclusions
32 template <class S, class LO, class GO, class N>
33 class Vector;
34 #endif
35 
36 template <class Scalar,
37  class LocalOrdinal,
38  class GlobalOrdinal,
39  class Node = Tpetra::KokkosClassic::DefaultNode::DefaultNodeType>
41  : public DistObject<Scalar, LocalOrdinal, GlobalOrdinal, Node> {
42  public:
43  typedef Scalar scalar_type;
44  typedef LocalOrdinal local_ordinal_type;
45  typedef GlobalOrdinal global_ordinal_type;
46  typedef Node node_type;
47 
49 
50 
52  virtual ~MultiVector();
53 
66 
68 
70 
72  virtual void replaceGlobalValue(GlobalOrdinal globalRow, size_t vectorIndex, const Scalar& value) = 0;
73 
75  virtual void sumIntoGlobalValue(GlobalOrdinal globalRow, size_t vectorIndex, const Scalar& value) = 0;
76 
78  virtual void replaceLocalValue(LocalOrdinal myRow, size_t vectorIndex, const Scalar& value) = 0;
79 
81  virtual void sumIntoLocalValue(LocalOrdinal myRow, size_t vectorIndex, const Scalar& value) = 0;
82 
84  virtual void putScalar(const Scalar& value) = 0;
85 
87 
89 
90 
92  virtual Teuchos::RCP<const Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>> getVector(size_t j) const = 0;
93 
95  virtual Teuchos::RCP<Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>> getVectorNonConst(size_t j) = 0;
96 
98  virtual Teuchos::ArrayRCP<const Scalar> getData(size_t j) const = 0;
99 
101  virtual Teuchos::ArrayRCP<Scalar> getDataNonConst(size_t j) = 0;
102 
104 
106 
107 
109  virtual void dot(const MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& A, const Teuchos::ArrayView<Scalar>& dots) const = 0;
110 
113 
116 
118  virtual void scale(const Scalar& alpha) = 0;
119 
121  virtual void scale(Teuchos::ArrayView<const Scalar> alpha) = 0;
122 
124  virtual void update(const Scalar& alpha, const MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& A, const Scalar& beta) = 0;
125 
127  virtual void update(const Scalar& alpha, const MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& A,
128  const Scalar& beta, const MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& B,
129  const Scalar& gamma) = 0;
130 
132  virtual void norm1(const Teuchos::ArrayView<typename Teuchos::ScalarTraits<Scalar>::magnitudeType>& norms) const = 0;
133 
135  virtual void norm2(const Teuchos::ArrayView<typename Teuchos::ScalarTraits<Scalar>::magnitudeType>& norms) const = 0;
136 
138  virtual void normInf(const Teuchos::ArrayView<typename Teuchos::ScalarTraits<Scalar>::magnitudeType>& norms) const = 0;
139 
142  virtual void meanValue(const Teuchos::ArrayView<Scalar>& means) const = 0;
143 
145  virtual void multiply(Teuchos::ETransp transA,
146  Teuchos::ETransp transB,
147  const Scalar& alpha,
150  const Scalar& beta) = 0;
151 
179  virtual void elementWiseMultiply(Scalar scalarAB,
182  Scalar scalarThis) = 0;
183 
185 
187 
188 
190  virtual size_t getNumVectors() const = 0;
191 
193  virtual size_t getLocalLength() const = 0;
194 
196  virtual global_size_t getGlobalLength() const = 0;
197 
198  // \brief Checks to see if the local length, number of vectors and size of Scalar type match
199  virtual bool isSameSize(const MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& vec) const = 0;
200 
202 
204 
205 
207  virtual std::string description() const = 0;
208 
210  virtual void describe(Teuchos::FancyOStream& out, const Teuchos::EVerbosityLevel verbLevel = Teuchos::Describable::verbLevel_default) const = 0;
211 
212  virtual void replaceMap(const RCP<const Map<LocalOrdinal, GlobalOrdinal, Node>>& map) = 0;
213 
215 
217 
218 
220  virtual void setSeed(unsigned int seed) = 0;
221 
223  virtual void randomize(bool bUseXpetraImplementation = false) = 0;
224 
226  virtual void randomize(const Scalar& minVal, const Scalar& maxVal, bool bUseXpetraImplementation = false) = 0;
227 
229  virtual void Xpetra_randomize();
230 
232  virtual void Xpetra_randomize(const Scalar& minVal, const Scalar& maxVal);
233 
234  using impl_scalar_type = typename Kokkos::ArithTraits<Scalar>::val_type;
235  using dual_view_type = Kokkos::DualView<impl_scalar_type**, Kokkos::LayoutStride, typename node_type::device_type, Kokkos::MemoryUnmanaged>;
236  using dual_view_type_const = Kokkos::DualView<const impl_scalar_type**, Kokkos::LayoutStride, typename node_type::device_type, Kokkos::MemoryUnmanaged>;
237  using host_execution_space = typename dual_view_type::host_mirror_space;
238  using dev_execution_space = typename dual_view_type::t_dev::execution_space;
239 
240  virtual typename dual_view_type::t_host_const_um getHostLocalView(Access::ReadOnlyStruct) const {
241  throw std::runtime_error("Dummy function getHostLocalView(Access::ReadOnlyStruct), should be overwritten at" + std::string(__FILE__) + ":" + std::to_string(__LINE__));
242 #ifndef __NVCC__
243  typename dual_view_type::t_host_um test;
244 #endif
245  TEUCHOS_UNREACHABLE_RETURN(test);
246  }
247 
248  virtual typename dual_view_type::t_dev_const_um getDeviceLocalView(Access::ReadOnlyStruct) const {
249  throw std::runtime_error("Dummy function getDeviceLocalView(Access::ReadOnlyStruct), should be overwritten at" + std::string(__FILE__) + ":" + std::to_string(__LINE__));
250 #ifndef __NVCC__
251  typename dual_view_type::t_dev_um test;
252 #endif
253  TEUCHOS_UNREACHABLE_RETURN(test);
254  }
255 
256  virtual typename dual_view_type::t_host_um getHostLocalView(Access::OverwriteAllStruct) const {
257  throw std::runtime_error("Dummy function getHostLocalView(Access::OverwriteAllStruct), should be overwritten at" + std::string(__FILE__) + ":" + std::to_string(__LINE__));
258 #ifndef __NVCC__
259  typename dual_view_type::t_host_um test;
260 #endif
261  TEUCHOS_UNREACHABLE_RETURN(test);
262  }
263 
264  virtual typename dual_view_type::t_dev_um getDeviceLocalView(Access::OverwriteAllStruct) const {
265  throw std::runtime_error("Dummy function getDeviceLocalView(Access::OverwriteAllStruct), should be overwritten at" + std::string(__FILE__) + ":" + std::to_string(__LINE__));
266 #ifndef __NVCC__
267  typename dual_view_type::t_dev_um test;
268 #endif
269  TEUCHOS_UNREACHABLE_RETURN(test);
270  }
271 
272  virtual typename dual_view_type::t_host_um getHostLocalView(Access::ReadWriteStruct) const {
273  throw std::runtime_error("Dummy function getHostLocalView(Access::ReadWriteStruct), should be overwritten at" + std::string(__FILE__) + ":" + std::to_string(__LINE__));
274 #ifndef __NVCC__
275  typename dual_view_type::t_host_um test;
276 #endif
277  TEUCHOS_UNREACHABLE_RETURN(test);
278  }
279 
280  virtual typename dual_view_type::t_dev_um getDeviceLocalView(Access::ReadWriteStruct) const {
281  throw std::runtime_error("Dummy function getDeviceLocalView(Access::ReadWriteStruct), should be overwritten at" + std::string(__FILE__) + ":" + std::to_string(__LINE__));
282 #ifndef __NVCC__
283  typename dual_view_type::t_dev_um test;
284 #endif
285  TEUCHOS_UNREACHABLE_RETURN(test);
286  }
287 
289 
290  protected:
297 
298 }; // MultiVector class
299 
300 } // namespace Xpetra
301 
302 #define XPETRA_MULTIVECTOR_SHORT
303 
304 #endif // XPETRA_MULTIVECTOR_DECL_HPP
virtual void replaceMap(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node >> &map)=0
virtual void norm2(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const =0
virtual dual_view_type::t_dev_const_um getDeviceLocalView(Access::ReadOnlyStruct) const
virtual void normInf(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const =0
Compute Inf-norm of each vector in multi-vector.
virtual dual_view_type::t_host_um getHostLocalView(Access::ReadWriteStruct) const
virtual std::string description() const =0
A simple one-line description of this object.
virtual void randomize(bool bUseXpetraImplementation=false)=0
Set multi-vector values to random numbers.
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 void sumIntoGlobalValue(GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)=0
Add value to existing value, using global (row) index.
Kokkos::DualView< const impl_scalar_type **, Kokkos::LayoutStride, typename node_type::device_type, Kokkos::MemoryUnmanaged > dual_view_type_const
virtual void putScalar(const Scalar &value)=0
Set all values in the multivector with the given value.
virtual void setSeed(unsigned int seed)=0
Set seed for Random function.
virtual void Xpetra_randomize()
Set multi-vector values to random numbers. XPetra implementation.
MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & operator=(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &rhs)
Assignment operator: Does a deep copy.
virtual void assign(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &rhs)=0
Implementation of the assignment operator (operator=); does a deep copy.
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 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 sumIntoLocalValue(LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)=0
Add value to existing value, using local (row) index.
virtual dual_view_type::t_dev_um getDeviceLocalView(Access::ReadWriteStruct) const
virtual bool isSameSize(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &vec) const =0
virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const =0
Print the object with the given verbosity level to a FancyOStream.
virtual ~MultiVector()
Destructor.
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 void scale(const Scalar &alpha)=0
Scale the current values of a multi-vector, this = alpha*this.
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.
typename dual_view_type::t_dev::execution_space dev_execution_space
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 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 size_t getLocalLength() const =0
Local number of rows on the calling process.
virtual Teuchos::ArrayRCP< Scalar > getDataNonConst(size_t j)=0
View of the local values in a particular vector of this multivector.
size_t global_size_t
Global size_t object.
virtual global_size_t getGlobalLength() const =0
Global number of rows in the multivector.
Kokkos::DualView< impl_scalar_type **, Kokkos::LayoutStride, typename node_type::device_type, Kokkos::MemoryUnmanaged > dual_view_type
virtual void meanValue(const Teuchos::ArrayView< Scalar > &means) const =0
virtual dual_view_type::t_host_um getHostLocalView(Access::OverwriteAllStruct) const
typename dual_view_type::host_mirror_space host_execution_space
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 dual_view_type::t_dev_um getDeviceLocalView(Access::OverwriteAllStruct) const
virtual dual_view_type::t_host_const_um getHostLocalView(Access::ReadOnlyStruct) const
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]).
typename Kokkos::ArithTraits< int >::val_type impl_scalar_type
virtual void replaceGlobalValue(GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)=0
Replace value, using global (row) index.
virtual void replaceLocalValue(LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)=0
Replace value, using local (row) index.
virtual size_t getNumVectors() const =0
Number of columns in the multivector.
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.