Tpetra parallel linear algebra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Tpetra_Vector_decl.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // Tpetra: Templated Linear Algebra Services Package
4 //
5 // Copyright 2008 NTESS and the Tpetra contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef TPETRA_VECTOR_DECL_HPP
11 #define TPETRA_VECTOR_DECL_HPP
12 
15 
16 #include "Tpetra_ConfigDefs.hpp"
17 #include "Tpetra_Vector_fwd.hpp"
19 
20 namespace Tpetra {
21 
40 template <class Scalar,
41  class LocalOrdinal,
42  class GlobalOrdinal,
43  class Node>
44 class Vector : public MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>
45 {
46 private:
48 
49 public:
51 
52 
55  typedef Scalar scalar_type;
67  typedef LocalOrdinal local_ordinal_type;
69  typedef GlobalOrdinal global_ordinal_type;
71  typedef typename Node::device_type device_type;
72 
74  typedef Node node_type;
75 
81  typedef typename base_type::dot_type dot_type;
82 
89  typedef typename base_type::mag_type mag_type;
90 
93 
96 
98  typedef typename base_type::map_type map_type;
99 
101 
103 
105  Vector ();
106 
112  //
117  explicit Vector (const Teuchos::RCP<const map_type>& map,
118  const bool zeroOut = true);
119 
132  const Teuchos::DataAccess copyOrView);
133 
140  const Teuchos::RCP<const map_type>& map,
141  const local_ordinal_type rowOffset = 0);
142 
144  Vector (const Teuchos::RCP<const map_type>& map,
145  const Teuchos::ArrayView<const Scalar>& A);
146 
159  Vector (const Teuchos::RCP<const map_type>& map,
160  const dual_view_type& view);
161 
176  Vector (const Teuchos::RCP<const map_type>& map,
177  const dual_view_type& view,
178  const dual_view_type& origView);
179 
188  Vector (const Teuchos::RCP<const map_type>& map,
189  const wrapped_dual_view_type& d_view);
190 
197  const size_t j);
198 
208 
211 
219 
223 
233  virtual ~Vector () = default;
235 
237 
238 
240 
242  void replaceGlobalValue (const GlobalOrdinal globalRow, const Scalar& value);
243 
263  void
264  sumIntoGlobalValue (const GlobalOrdinal globalRow,
265  const Scalar& value,
266  const bool atomic = base_type::useAtomicUpdatesByDefault);
267 
269 
271  void replaceLocalValue (const LocalOrdinal myRow, const Scalar& value);
272 
290  void
291  sumIntoLocalValue (const LocalOrdinal myRow,
292  const Scalar& value,
293  const bool atomic = base_type::useAtomicUpdatesByDefault);
294 
296 
298 
299 
302  void get1dCopy (const Teuchos::ArrayView<Scalar>& A) const;
303 
306  Teuchos::ArrayRCP<Scalar> getDataNonConst () {
307  return getDataNonConst (0);
308  }
309 
312  Teuchos::ArrayRCP<const Scalar> getData () const {
313  return getData (0);
314  }
315 
316  Teuchos::RCP<const Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node> >
317  offsetView (const Teuchos::RCP<const map_type>& subMap,
318  const size_t offset) const;
319 
320  Teuchos::RCP<Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node> >
321  offsetViewNonConst (const Teuchos::RCP<const map_type>& subMap,
322  const size_t offset);
324 
326 
327  using MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>::dot; // overloading, not hiding
330 
331  using MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>::norm1; // overloading, not hiding
333  mag_type norm1() const;
334 
335  using MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>::norm2; // overloading, not hiding
337  mag_type norm2() const;
338 
341  mag_type normInf() const;
342 
343 
346  Scalar meanValue () const;
347 
349 
351 
353  virtual std::string description () const;
354 
376  virtual void
377  describe (Teuchos::FancyOStream& out,
378  const Teuchos::EVerbosityLevel verbLevel =
379  Teuchos::Describable::verbLevel_default) const;
381 }; // class Vector
382 
385 template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
386 Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>
387 createCopy (const Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& src);
388 
394 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
395 Teuchos::RCP<Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node> >
396 createVector (const Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> >& map)
397 {
399 }
400 
401 } // namespace Tpetra
402 
403 #endif // TPETRA_VECTOR_DECL_HPP
Vector()
Default constructor: makes a Vector with no rows or columns.
mag_type norm2() const
Return the two-norm of this Vector.
Teuchos::ArrayRCP< Scalar > getDataNonConst()
View of the local values of this vector.
virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Describe this object in a human-readable way to the given output stream.
Vector & operator=(const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &)=default
Copy assignment (shallow copy).
base_type::mag_type mag_type
Type of a norm result.
Node::device_type device_type
The Kokkos device type.
typename Kokkos::ArithTraits< impl_scalar_type >::mag_type mag_type
Type of a norm result.
base_type::impl_scalar_type impl_scalar_type
The type used internally in place of Scalar.
void get1dCopy(const Teuchos::ArrayView< Scalar > &A) const
Return multi-vector values in user-provided two-dimensional array (using Teuchos memory management cl...
One or more distributed dense vectors.
void sumIntoLocalValue(const LocalOrdinal myRow, const Scalar &value, const bool atomic=base_type::useAtomicUpdatesByDefault)
Add value to existing value, using local (row) index.
virtual std::string description() const
Return a one-line description of this object.
MultiVector< ST, LO, GO, NT > createCopy(const MultiVector< ST, LO, GO, NT > &src)
Return a deep copy of the given MultiVector.
dot_type dot(const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &y) const
Return the dot product of this Vector and the input Vector x.
static const bool useAtomicUpdatesByDefault
Whether sumIntoLocalValue and sumIntoGlobalValue should use atomic updates by default.
GlobalOrdinal global_ordinal_type
This class&#39; third template parameter; the type of global indices.
base_type::wrapped_dual_view_type wrapped_dual_view_type
WrappedDualView specialization used by this class.
typename Kokkos::ArithTraits< Scalar >::val_type impl_scalar_type
The type used internally in place of Scalar.
Scalar scalar_type
This class&#39; first template parameter; the type of each entry in the Vector.
Declaration of the Tpetra::MultiVector class.
Teuchos::ArrayRCP< const Scalar > getData() const
Const view of the local values of this vector.
void sumIntoGlobalValue(const GlobalOrdinal globalRow, const Scalar &value, const bool atomic=base_type::useAtomicUpdatesByDefault)
Add value to existing value, using global (row) index.
void replaceLocalValue(const LocalOrdinal myRow, const Scalar &value)
Replace current value at the specified location with specified values.
Teuchos::RCP< Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > createVector(const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &map)
Nonmember Vector &quot;constructor&quot;: Create a Vector from a given Map.
virtual ~Vector()=default
Destructor (virtual for memory safety of derived classes).
void replaceGlobalValue(const GlobalOrdinal globalRow, const Scalar &value)
Replace current value at the specified location with specified value.
LocalOrdinal local_ordinal_type
This class&#39; second template parameter; the type of local indices.
Kokkos::DualView< impl_scalar_type **, Kokkos::LayoutLeft, device_type > dual_view_type
Kokkos::DualView specialization used by this class.
Forward declaration of Tpetra::Vector.
A parallel distribution of indices over processes.
Node node_type
The Kokkos Node type.
typename Kokkos::Details::InnerProductSpaceTraits< impl_scalar_type >::dot_type dot_type
Type of an inner (&quot;dot&quot;) product result.
A distributed dense vector.
base_type::dual_view_type dual_view_type
Kokkos::DualView specialization used by this class.
Scalar meanValue() const
Compute mean (average) value of this Vector.
base_type::map_type map_type
The type of the Map specialization used by this class.
mag_type normInf() const
Return the infinity-norm of this Vector.
base_type::dot_type dot_type
Type of an inner (&quot;dot&quot;) product result.
mag_type norm1() const
Return the one-norm of this Vector.