10 #ifndef THYRA_TPETRA_VECTOR_SPACE_HPP
11 #define THYRA_TPETRA_VECTOR_SPACE_HPP
19 #include "Tpetra_Details_StaticView.hpp"
24 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
25 RCP<TpetraVectorSpace<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
34 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
36 const RCP<
const Tpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > &tpetraMap
40 tpetraMap_ = tpetraMap;
41 this->updateState(tpetraMap->getGlobalNumElements(),
42 !tpetraMap->isDistributed());
43 this->setScalarProd(tpetraEuclideanScalarProd<Scalar,LocalOrdinal,GlobalOrdinal,Node>());
50 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
55 return tpetraVectorSpace<Scalar>(
56 Tpetra::createLocalMapWithNode<LocalOrdinal,GlobalOrdinal,Node>(
57 size, tpetraMap_->getComm() ) );
64 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
68 return tpetraVector<Scalar>(
69 weakSelfPtr_.create_strong().getConst(),
71 new Tpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node>(tpetraMap_,
false)
77 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
81 return tpetraMultiVector<Scalar>(
82 weakSelfPtr_.create_strong().getConst(),
83 this->createLocallyReplicatedVectorSpace(numMembers),
85 new Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>(
86 tpetraMap_, numMembers,
false)
92 template<
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
99 bool inUse = Teuchos::get_extra_data<bool>(tmv,
"inUse");
102 "Cannot use the cached vector simultaneously more than once.");
109 mv_->acquireDetachedView(Range1D(),Range1D(),&smv);
110 RTOpPack::assign_entries<Scalar>( Teuchos::outArg(
raw_mv_), smv );
111 mv_->releaseDetachedView(&smv);
122 template<
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
126 const bool initialize)
const
134 if (!tpetraMap_->isDistributed()) {
136 if (tpetraMV_.is_null() || (tpetraMV_->getNumVectors() != size_t (raw_mv.
numSubCols()))) {
137 if (!tpetraMV_.is_null())
141 "Cannot use the cached vector simultaneously more than once.");
142 using IST =
typename Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>::impl_scalar_type;
143 using DT =
typename Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>::device_type;
144 auto dv = ::Tpetra::Details::getStatic2dDualView<IST, DT> (tpetraMap_->getGlobalNumElements(), raw_mv.
numSubCols());
145 tpetraMV_ =
Teuchos::rcp(
new Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>(tpetraMap_, dv));
147 Teuchos::set_extra_data(inUse,
"inUse",Teuchos::outArg(tpetraMV_));
150 if (tpetraDomainSpace_.is_null() || raw_mv.
numSubCols() != tpetraDomainSpace_->localSubDim())
151 tpetraDomainSpace_ = tpetraVectorSpace<Scalar>(Tpetra::createLocalMapWithNode<LocalOrdinal, GlobalOrdinal, Node>(raw_mv.
numSubCols(), tpetraMap_->getComm()));
153 mv = tpetraMultiVector<Scalar>(weakSelfPtr_.create_strong().getConst(), tpetraDomainSpace_, tpetraMV_);
155 mv = this->createMembers(raw_mv.
numSubCols());
158 Teuchos::set_extra_data(inUse,
"inUse",Teuchos::outArg(tmv));
163 mv->acquireDetachedView(Range1D(),Range1D(),&smv);
164 RTOpPack::assign_entries<Scalar>(
165 Ptr<const RTOpPack::SubMultiVectorView<Scalar> >(Teuchos::outArg(smv)),
168 mv->commitDetachedView(&smv);
171 Teuchos::set_extra_data(
174 "CopyTpetraMultiVectorViewBack",
182 template<
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
192 if (!tpetraMap_->isDistributed()) {
193 if (tpetraMV_.is_null() || (tpetraMV_->getNumVectors() != size_t (raw_mv.
numSubCols()))) {
194 if (!tpetraMV_.is_null())
198 "Cannot use the cached vector simultaneously more than once.");
199 using IST =
typename Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>::impl_scalar_type;
200 using DT =
typename Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>::device_type;
201 auto dv = ::Tpetra::Details::getStatic2dDualView<IST, DT> (tpetraMap_->getGlobalNumElements(), raw_mv.
numSubCols());
202 tpetraMV_ =
Teuchos::rcp(
new Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>(tpetraMap_, dv));
204 Teuchos::set_extra_data(inUse,
"inUse",Teuchos::outArg(tpetraMV_));
207 if (tpetraDomainSpace_.is_null() || raw_mv.
numSubCols() != tpetraDomainSpace_->localSubDim())
208 tpetraDomainSpace_ = tpetraVectorSpace<Scalar>(Tpetra::createLocalMapWithNode<LocalOrdinal, GlobalOrdinal, Node>(raw_mv.
numSubCols(), tpetraMap_->getComm()));
210 mv = tpetraMultiVector<Scalar>(weakSelfPtr_.create_strong().getConst(), tpetraDomainSpace_, tpetraMV_);
212 mv = this->createMembers(raw_mv.
numSubCols());
215 Teuchos::set_extra_data(inUse,
"inUse",Teuchos::outArg(tmv));
219 mv->acquireDetachedView(Range1D(),Range1D(),&smv);
220 RTOpPack::assign_entries<Scalar>(
221 Ptr<const RTOpPack::SubMultiVectorView<Scalar> >(Teuchos::outArg(smv)),
223 mv->commitDetachedView(&smv);
228 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
230 const Range1D& rng_in,
const EViewType viewType,
const EStrideType strideType
233 const Range1D rng = full_range(rng_in,0,this->dim()-1);
234 const Ordinal l_localOffset = this->localOffset();
236 const Ordinal myLocalSubDim = tpetraMap_.is_null () ?
237 static_cast<Ordinal> (0) : tpetraMap_->getLocalNumElements ();
239 return ( l_localOffset<=rng.lbound() && rng.ubound()<l_localOffset+myLocalSubDim );
243 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
247 return tpetraVectorSpace<Scalar>(tpetraMap_);
250 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
260 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
268 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
271 return tpetraMap_.is_null () ?
static_cast<Ordinal> (0) :
272 static_cast<Ordinal> (tpetraMap_->getLocalNumElements ());
278 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
289 #endif // THYRA_TPETRA_VECTOR_SPACE_HPP
Concrete implementation of Thyra::MultiVector in terms of Tpetra::MultiVector.
Ordinal localSubDim() const
Concrete implementation of an SPMD vector space for Tpetra.
Ordinal numSubCols() const
RCP< const VectorSpaceBase< Scalar > > clone() const
RCP< T > create_weak() const
RCP< TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > createLocallyReplicatedVectorSpace(int size) const
Create Tpetra locally replicated vector space.
static RCP< TpetraVectorSpace< Scalar, LocalOrdinal, GlobalOrdinal, Node > > create()
Create with weak ownership to self.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
void initialize(const RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &tpetraMap)
Initialize a serial space.
RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > getTpetraMap() const
Get the embedded Tpetra::Map.
CopyTpetraMultiVectorViewBack(RCP< MultiVectorBase< Scalar > > mv, const RTOpPack::SubMultiVectorView< Scalar > &raw_mv)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
const RTOpPack::SubMultiVectorView< Scalar > raw_mv_
~CopyTpetraMultiVectorViewBack()
bool hasInCoreView(const Range1D &rng, const EViewType viewType, const EStrideType strideType) const
Returns true if all the elements in rng are in this process.
RCP< VectorBase< Scalar > > createMember() const
RCP< MultiVectorBase< Scalar > > createMembers(int numMembers) const
RCP< const Teuchos::Comm< Ordinal > > getComm() const
RCP< MultiVectorBase< Scalar > > mv_
RCP< const Teuchos::Comm< Ordinal > > convertTpetraToThyraComm(const RCP< const Teuchos::Comm< int > > &tpetraComm)
Given an Tpetra Teuchos::Comm<int> object, return an equivalent Teuchos::Comm<Ordinal> object...
RCP< MultiVectorBase< Scalar > > createCachedMembersView(const RTOpPack::SubMultiVectorView< Scalar > &raw_mv, bool initialize=true) const
#define TEUCHOS_TEST_FOR_EXCEPT(throw_exception_test)