Xpetra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Xpetra_BlockedMultiVector_decl.hpp
Go to the documentation of this file.
1 // @HEADER
2 //
3 // ***********************************************************************
4 //
5 // Xpetra: A linear algebra interface package
6 // Copyright 2012 Sandia Corporation
7 //
8 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact
39 // Jonathan Hu (jhu@sandia.gov)
40 // Andrey Prokopenko (aprokop@sandia.gov)
41 // Tobias Wiesner (tawiesn@sandia.gov)
42 // Ray Tuminaro (rstumin@sandia.gov)
43 //
44 // ***********************************************************************
45 //
46 // @HEADER
47 #ifndef XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
48 #define XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
49 
50 /* this file is automatically generated - do not edit (see script/interfaces.py) */
51 
52 #include "Xpetra_ConfigDefs.hpp"
53 #include "Xpetra_Map_decl.hpp"
55 
57 
58 
59 namespace Xpetra {
60 
61 
62 #ifndef DOXYGEN_SHOULD_SKIP_THIS
63  // forward declaration of Vector, needed to prevent circular inclusions
64  template<class S, class LO, class GO, class N> class Vector;
65 
66  // forward declaration of MapExtractor, we just need the class sig here.
67  template<class S, class LO, class GO, class N> class MapExtractor;
68 #endif
69 
70 
71  template <class Scalar,
72  class LocalOrdinal,
73  class GlobalOrdinal,
76  : public MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >
77  {
78  public:
79  typedef Scalar scalar_type;
80  typedef LocalOrdinal local_ordinal_type;
81  typedef GlobalOrdinal global_ordinal_type;
82  typedef Node node_type;
83 
84  private:
85 
86 #undef XPETRA_BLOCKEDMULTIVECTOR_SHORT
87 #include "Xpetra_UseShortNames.hpp"
88 
89  public:
90 
92 
93 
95 
96 
105  BlockedMultiVector(const Teuchos::RCP<const BlockedMap>& map, size_t NumVectors, bool zeroOut = true);
106 
107 
120  Teuchos::RCP<const MultiVector> v);
121 
122 
135  Teuchos::RCP<const MultiVector> v);
136 
137 
146  BlockedMultiVector(const Teuchos::RCP< const BlockedMap > &map, std::vector<Teuchos::RCP<MultiVector> > & vin);
147 
148 
150  virtual ~BlockedMultiVector();
151 
152 
161 
162 
164 
166 
168  virtual void replaceGlobalValue(GlobalOrdinal /* globalRow */, size_t /* vectorIndex */, const Scalar &/* value */);
169 
171  virtual void sumIntoGlobalValue(GlobalOrdinal /* globalRow */, size_t /* vectorIndex */, const Scalar &/* value */);
172 
174  virtual void replaceLocalValue(LocalOrdinal /* myRow */, size_t /* vectorIndex */, const Scalar &/* value */);
175 
177  virtual void sumIntoLocalValue(LocalOrdinal /* myRow */, size_t /* vectorIndex */, const Scalar &/* value */);
178 
180  virtual void putScalar(const Scalar& value);
181 
182 
184 
186 
187 
189  virtual Teuchos::RCP<const Xpetra::Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>> getVector(size_t j) const;
190 
191 
193  virtual Teuchos::RCP<Xpetra::Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>> getVectorNonConst(size_t j);
194 
195 
197  virtual Teuchos::ArrayRCP<const Scalar> getData(size_t j) const;
198 
199 
201  virtual Teuchos::ArrayRCP<Scalar> getDataNonConst(size_t j);
202 
203 
205 
207 
208 
210  virtual void dot(const MultiVector& /* A */, const Teuchos::ArrayView<Scalar>& /* dots */) const;
211 
212 
214  virtual void abs(const MultiVector& /* A */);
215 
216 
218  virtual void reciprocal(const MultiVector& /* A */);
219 
220 
222  virtual void scale(const Scalar& alpha);
223 
224 
226  virtual void scale(Teuchos::ArrayView<const Scalar> alpha);
227 
228 
230  virtual void update(const Scalar& alpha, const MultiVector& A, const Scalar& beta);
231 
232 
234  virtual void update(const Scalar &alpha, const MultiVector&A, const Scalar &beta, const MultiVector&B, const Scalar &gamma);
235 
236 
238  virtual void norm1(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const;
239 
240 
242  virtual void norm2(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const;
243 
244 
246  virtual void normInf(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const;
247 
248 
250  virtual void meanValue(const Teuchos::ArrayView< Scalar > &/* means */) const;
251 
252 
254  virtual void multiply(Teuchos::ETransp /* transA */, Teuchos::ETransp /* transB */, const Scalar &/* alpha */, const MultiVector&/* A */, const MultiVector&/* B */, const Scalar &/* beta */);
255 
256 
258  virtual void elementWiseMultiply(Scalar scalarAB, const Xpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node>&A, const MultiVector&B, Scalar scalarThis);
259 
260 
262 
264 
265 
267  virtual size_t getNumVectors() const;
268 
269 
271  virtual size_t getLocalLength() const;
272 
273 
275  virtual global_size_t getGlobalLength() const;
276 
277 
280 
281 
283 
285 
286 
288  virtual std::string description() const;
289 
290 
292  virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const;
293 
294 
295  virtual void replaceMap(const RCP<const Map>& map);
296 
297 
299  virtual void doImport(const DistObject<Scalar, LocalOrdinal, GlobalOrdinal, Node> &/* source */, const Import& /* importer */, CombineMode /* CM */);
300 
301 
303  virtual void doExport(const DistObject<Scalar, LocalOrdinal, GlobalOrdinal, Node> &/* dest */, const Import& /* importer */, CombineMode /* CM */);
304 
305 
307  virtual void doImport(const DistObject<Scalar, LocalOrdinal, GlobalOrdinal, Node> &/* source */, const Export& /* exporter */, CombineMode /* CM */);
308 
309 
311  virtual void doExport(const DistObject<Scalar, LocalOrdinal, GlobalOrdinal, Node> &/* dest */, const Export& /* exporter */, CombineMode /* CM */);
312 
313 
315 
317 
318 
320  virtual void setSeed(unsigned int seed);
321 
322 
323  virtual void randomize(bool bUseXpetraImplementation = false);
324 
325 
327  virtual void Xpetra_randomize();
328 
329 
330 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
331  typedef typename Kokkos::Details::ArithTraits<Scalar>::val_type impl_scalar_type;
332  typedef Kokkos::DualView<impl_scalar_type**, Kokkos::LayoutStride,
333  typename node_type::execution_space,
334  Kokkos::MemoryUnmanaged> dual_view_type;
335  typedef typename dual_view_type::host_mirror_space host_execution_space;
336  typedef typename dual_view_type::t_dev::execution_space dev_execution_space;
337 
343  template<class TargetDeviceType>
344  typename Kokkos::Impl::if_c<
345  std::is_same<
346  typename dev_execution_space::memory_space,
347  typename TargetDeviceType::memory_space>::value,
348  typename dual_view_type::t_dev_um,
349  typename dual_view_type::t_host_um>::type
350  getLocalView () const {
351  if(std::is_same<
352  typename host_execution_space::memory_space,
353  typename TargetDeviceType::memory_space
354  >::value) {
355  return getHostLocalView();
356  } else {
357  return getDeviceLocalView();
358  }
359  }
360 
361  virtual typename dual_view_type::t_host_um getHostLocalView () const {
362  typename dual_view_type::t_host_um test;
363  return test;
364  }
365 
366  virtual typename dual_view_type::t_dev_um getDeviceLocalView() const {
367  typename dual_view_type::t_dev_um test;
368  return test;
369  }
370 #endif
371 
372 
374 
375 
377  Teuchos::RCP< const Map> getMap() const;
378 
379 
381  Teuchos::RCP< const Xpetra::BlockedMap<LocalOrdinal,GlobalOrdinal,Node> > getBlockedMap() const;
382 
383 
385  Teuchos::RCP<MultiVector> getMultiVector(size_t r) const;
386 
387 
389  Teuchos::RCP<MultiVector> getMultiVector(size_t r, bool bThyraMode) const;
390 
391 
393  void setMultiVector(size_t r, Teuchos::RCP<const MultiVector> v, bool bThyraMode);
394 
395 
397  Teuchos::RCP<MultiVector> Merge() const;
398 
399 
400  protected:
401 
402 
409  virtual void assign (const MultiVector& rhs);
410 
411  private:
412 
413 
414  // helper routines for interaction of MultiVector and BlockedMultiVectors
415 
416  void ExtractVector(RCP<const MultiVector>& full, size_t block, RCP<MultiVector>& partial) const;
417  void ExtractVector(RCP< MultiVector>& full, size_t block, RCP<MultiVector>& partial) const;
418 
419  RCP<MultiVector> ExtractVector(RCP<const MultiVector>& full, size_t block, bool bThyraMode = false) const;
420  RCP<MultiVector> ExtractVector(RCP< MultiVector>& full, size_t block, bool bThyraMode = false) const;
421 
422  void ExtractVector(const MultiVector& full, size_t block, MultiVector& partial) const;
423 
424 
425  void InsertVector(const MultiVector& partial, size_t block, MultiVector& full, bool bThyraMode = false) const; // 1019
426  void InsertVector(RCP<const MultiVector> partial, size_t block, RCP<MultiVector> full, bool bThyraMode = false) const; // 1059
427  void InsertVector(RCP< MultiVector> partial, size_t block, RCP<MultiVector> full, bool bThyraMode = false) const; // 1069
428 
429 
430  private:
431 
432 
433  Teuchos::RCP<const BlockedMap> map_;
434  std::vector<Teuchos::RCP<MultiVector> > vv_;
435  size_t numVectors_;
436 
437  }; // BlockedMultiVector class
438 
439 
440 } // Xpetra namespace
441 
442 
443 #define XPETRA_BLOCKEDMULTIVECTOR_SHORT
444 #endif // XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
445 
446 
virtual void reciprocal(const MultiVector &)
Put element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j).
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.
std::vector< Teuchos::RCP< MultiVector > > vv_
array containing RCPs of the partial vectors
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.
virtual void sumIntoGlobalValue(GlobalOrdinal, size_t, const Scalar &)
Add value to existing value, using global (row) index.
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).
virtual std::string description() const
A simple one-line description of this object.
virtual Teuchos::RCP< Xpetra::Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > getVectorNonConst(size_t j)
Return a Vector which is a nonconst view of column j.
BlockedMultiVector(const Teuchos::RCP< const BlockedMap > &map, size_t NumVectors, bool zeroOut=true)
Constructor.
virtual void replaceGlobalValue(GlobalOrdinal, size_t, const Scalar &)
Replace value, using global (row) index.
virtual void sumIntoLocalValue(LocalOrdinal, size_t, const Scalar &)
Add value to existing value, using local (row) index.
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...
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.
virtual void replaceLocalValue(LocalOrdinal, size_t, const Scalar &)
Replace value, using local (row) index.
size_t numVectors_
number of vectors (columns in multi vector)
Teuchos::RCP< MultiVector > Merge() const
merge BlockedMultiVector blocks to a single MultiVector
virtual void norm2(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const
virtual void replaceMap(const RCP< const Map > &map)
virtual void scale(const Scalar &alpha)
Scale the current values of a multi-vector, this = alpha*this.
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.
virtual void setSeed(unsigned int seed)
Set seed for Random function.
void setMultiVector(size_t r, Teuchos::RCP< const MultiVector > v, bool bThyraMode)
set partial multivector associated with block row r
virtual void norm1(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const
Compute 1-norm of each vector in multi-vector.
virtual void normInf(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const
Compute Inf-norm of each vector in multi-vector.
size_t global_size_t
Global size_t object.
virtual Teuchos::ArrayRCP< const Scalar > getData(size_t j) const
Const view of the local values in a particular vector of this multivector.
virtual void abs(const MultiVector &)
Put element-wise absolute values of input Multi-vector in target: A = abs(this).
void InsertVector(const MultiVector &partial, size_t block, MultiVector &full, bool bThyraMode=false) const
virtual size_t getLocalLength() const
Local number of rows on the calling process.
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]).
Teuchos::RCP< MultiVector > getMultiVector(size_t r) const
return partial multivector associated with block row r
virtual void assign(const MultiVector &rhs)
Implementation of the assignment operator (operator=); does a deep copy.
virtual Teuchos::ArrayRCP< Scalar > getDataNonConst(size_t j)
View of the local values in a particular vector of this multivector.
Teuchos::RCP< const BlockedMap > map_
blocked map containing the sub block maps (either thyra or xpetra mode)
virtual size_t getNumVectors() const
Number of columns in the multivector.
void ExtractVector(RCP< const MultiVector > &full, size_t block, RCP< MultiVector > &partial) const
Teuchos::RCP< const Xpetra::BlockedMap< LocalOrdinal, GlobalOrdinal, Node > > getBlockedMap() const
Access function for the underlying Map this DistObject was constructed with.
virtual void putScalar(const Scalar &value)
Set all values in the multivector with the given value.
virtual global_size_t getGlobalLength() const
Global number of rows in the multivector.
virtual bool isSameSize(const Xpetra::MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &vec) const
Local number of rows on the calling process.
CombineMode
Xpetra::Combine Mode enumerable type.
virtual void doImport(const DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > &, const Import &, CombineMode)
Import.
Teuchos::RCP< const Map > getMap() const
Access function for the underlying Map this DistObject was constructed with.
virtual void doExport(const DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node > &, const Import &, CombineMode)
Export.
virtual void Xpetra_randomize()
Set multi-vector values to random numbers. XPetra implementation.
virtual void randomize(bool bUseXpetraImplementation=false)
Set multi-vector values to random numbers.
BlockedMultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & operator=(const MultiVector &rhs)
Assignment operator: Does a deep copy.