Xpetra Version of the Day
Loading...
Searching...
No Matches
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
59namespace 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
88
89 public:
90
92
93
96
102
105 BlockedMultiVector(const Teuchos::RCP<const BlockedMap>& map, size_t NumVectors, bool zeroOut = true);
106
107
121
122
134 BlockedMultiVector(Teuchos::RCP<const Xpetra::MapExtractor<Scalar,LocalOrdinal,GlobalOrdinal,Node>> mapExtractor,
136
137
146 BlockedMultiVector(const Teuchos::RCP< const BlockedMap > &map, std::vector<Teuchos::RCP<MultiVector> > & vin);
147
148
150 virtual ~BlockedMultiVector();
151
152
160 BlockedMultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& operator=(const MultiVector& rhs);
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 */);
177 virtual void sumIntoLocalValue(LocalOrdinal /* myRow */, size_t /* vectorIndex */, const Scalar &/* value */);
180 virtual void putScalar(const Scalar& value);
181
182
188
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
213 //! Put element-wise absolute values of input Multi-vector in target: A = abs(this).
214 virtual void abs(const MultiVector& /* A */);
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
250 virtual void meanValue(const Teuchos::ArrayView< Scalar > &/* means */) const;
252
253
254 virtual void multiply(Teuchos::ETransp /* transA */, Teuchos::ETransp /* transB */, const Scalar &/* alpha */, const MultiVector&/* A */, const MultiVector&/* B */, const Scalar &/* beta */);
256
258 virtual void elementWiseMultiply(Scalar scalarAB, const Xpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node>&A, const MultiVector&B, Scalar scalarThis);
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
279 virtual bool isSameSize(const Xpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> & vec) const;
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 virtual void randomize(const Scalar& minVal, const Scalar& maxVal, bool bUseXpetraImplementation = false);
326
327
329 virtual void Xpetra_randomize();
330
332 virtual void Xpetra_randomize(const Scalar& minVal, const Scalar& maxVal);
333
334
336
337
339 Teuchos::RCP< const Map> getMap() const;
340
341
344
345
347 Teuchos::RCP<MultiVector> getMultiVector(size_t r) const;
348
349
351 Teuchos::RCP<MultiVector> getMultiVector(size_t r, bool bThyraMode) const;
352
353
355 void setMultiVector(size_t r, Teuchos::RCP<const MultiVector> v, bool bThyraMode);
356
357
359 Teuchos::RCP<MultiVector> Merge() const;
360
361
362 protected:
363
364
371 virtual void assign (const MultiVector& rhs);
372
373 private:
374
375
376 // helper routines for interaction of MultiVector and BlockedMultiVectors
377
378 void ExtractVector(RCP<const MultiVector>& full, size_t block, RCP<MultiVector>& partial) const;
379 void ExtractVector(RCP< MultiVector>& full, size_t block, RCP<MultiVector>& partial) const;
380
381 RCP<MultiVector> ExtractVector(RCP<const MultiVector>& full, size_t block, bool bThyraMode = false) const;
382 RCP<MultiVector> ExtractVector(RCP< MultiVector>& full, size_t block, bool bThyraMode = false) const;
383
384 void ExtractVector(const MultiVector& full, size_t block, MultiVector& partial) const;
385
386
387 void InsertVector(const MultiVector& partial, size_t block, MultiVector& full, bool bThyraMode = false) const; // 1019
388 void InsertVector(RCP<const MultiVector> partial, size_t block, RCP<MultiVector> full, bool bThyraMode = false) const; // 1059
389 void InsertVector(RCP< MultiVector> partial, size_t block, RCP<MultiVector> full, bool bThyraMode = false) const; // 1069
390
391
392 private:
393
394
396 std::vector<Teuchos::RCP<MultiVector> > vv_;
397 size_t numVectors_;
398
399 }; // BlockedMultiVector class
400
401
402} // Xpetra namespace
403
404
405#define XPETRA_BLOCKEDMULTIVECTOR_SHORT
406#endif // XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
407
408
Kokkos::Compat::KokkosSerialWrapperNode DefaultNodeType
static const EVerbosityLevel verbLevel_default
Teuchos::RCP< const BlockedMap > map_
blocked map containing the sub block maps (either thyra or xpetra mode)
void InsertVector(RCP< MultiVector > partial, size_t block, RCP< MultiVector > full, bool bThyraMode=false) const
BlockedMultiVector(const Teuchos::RCP< const BlockedMap > &map, size_t NumVectors, bool zeroOut=true)
Constructor.
size_t numVectors_
number of vectors (columns in multi vector)
std::vector< Teuchos::RCP< MultiVector > > vv_
array containing RCPs of the partial vectors
basic_FancyOStream< char > FancyOStream
Xpetra namespace
size_t global_size_t
Global size_t object.
CombineMode
Xpetra::Combine Mode enumerable type.