47 #ifndef XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
48 #define XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
62 #ifndef DOXYGEN_SHOULD_SKIP_THIS
64 template<
class S,
class LO,
class GO,
class N>
class Vector;
67 template<
class S,
class LO,
class GO,
class N>
class MapExtractor;
71 template <
class Scalar,
76 :
public MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node >
86 #undef XPETRA_BLOCKEDMULTIVECTOR_SHORT
105 BlockedMultiVector(
const Teuchos::RCP<const BlockedMap>& map,
size_t NumVectors,
bool zeroOut =
true);
120 Teuchos::RCP<const MultiVector> v);
135 Teuchos::RCP<const MultiVector> v);
146 BlockedMultiVector(
const Teuchos::RCP< const BlockedMap > &map, std::vector<Teuchos::RCP<MultiVector> > & vin);
180 virtual void putScalar(
const Scalar& value);
189 virtual Teuchos::RCP<const Xpetra::Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>>
getVector(
size_t j)
const;
193 virtual Teuchos::RCP<Xpetra::Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>>
getVectorNonConst(
size_t j);
197 virtual Teuchos::ArrayRCP<const Scalar>
getData(
size_t j)
const;
210 virtual void dot(
const MultiVector& ,
const Teuchos::ArrayView<Scalar>& )
const;
222 virtual void scale(
const Scalar& alpha);
226 virtual void scale(Teuchos::ArrayView<const Scalar> alpha);
230 virtual void update(
const Scalar& alpha,
const MultiVector& A,
const Scalar& beta);
238 virtual void norm1(
const Teuchos::ArrayView<
typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms)
const;
242 virtual void norm2(
const Teuchos::ArrayView<
typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms)
const;
246 virtual void normInf(
const Teuchos::ArrayView<
typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms)
const;
250 virtual void meanValue(
const Teuchos::ArrayView< Scalar > &)
const;
292 virtual void describe(Teuchos::FancyOStream &out,
const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default)
const;
295 virtual void replaceMap(
const RCP<const Map>& map);
320 virtual void setSeed(
unsigned int seed);
323 virtual void randomize(
bool bUseXpetraImplementation =
false);
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;
343 template<
class TargetDeviceType>
344 typename Kokkos::Impl::if_c<
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 {
352 typename host_execution_space::memory_space,
353 typename TargetDeviceType::memory_space
355 return getHostLocalView();
357 return getDeviceLocalView();
361 virtual typename dual_view_type::t_host_um getHostLocalView ()
const {
362 typename dual_view_type::t_host_um test;
366 virtual typename dual_view_type::t_dev_um getDeviceLocalView()
const {
367 typename dual_view_type::t_dev_um test;
377 Teuchos::RCP< const Map>
getMap()
const;
381 Teuchos::RCP< const Xpetra::BlockedMap<LocalOrdinal,GlobalOrdinal,Node> >
getBlockedMap()
const;
389 Teuchos::RCP<MultiVector>
getMultiVector(
size_t r,
bool bThyraMode)
const;
393 void setMultiVector(
size_t r, Teuchos::RCP<const MultiVector> v,
bool bThyraMode);
397 Teuchos::RCP<MultiVector>
Merge()
const;
409 virtual void assign (
const MultiVector& rhs);
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;
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;
422 void ExtractVector(
const MultiVector& full,
size_t block, MultiVector& partial)
const;
425 void InsertVector(
const MultiVector& partial,
size_t block, MultiVector& full,
bool bThyraMode =
false)
const;
426 void InsertVector(RCP<const MultiVector> partial,
size_t block, RCP<MultiVector> full,
bool bThyraMode =
false)
const;
427 void InsertVector(RCP< MultiVector> partial,
size_t block, RCP<MultiVector> full,
bool bThyraMode =
false)
const;
433 Teuchos::RCP<const BlockedMap>
map_;
434 std::vector<Teuchos::RCP<MultiVector> >
vv_;
443 #define XPETRA_BLOCKEDMULTIVECTOR_SHORT
444 #endif // XPETRA_BLOCKEDMULTIVECTOR_DECL_HPP
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 ~BlockedMultiVector()
Destructor.
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)
GlobalOrdinal global_ordinal_type
virtual void scale(const Scalar &alpha)
Scale the current values of a multi-vector, this = alpha*this.
LocalOrdinal local_ordinal_type
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.