32 const Teuchos::RCP<const panzer::GlobalIndexer> & indexer,
33 const Teuchos::ParameterList& p)
34 : globalIndexer_(indexer)
35 , useTimeDerivativeSolutionVector_(false)
36 , globalDataKey_(
"Tangent Gather Container")
38 const std::vector<std::string>& names =
39 *(p.get< Teuchos::RCP< std::vector<std::string> > >(
"DOF Names"));
41 indexerNames_ = p.get< Teuchos::RCP< std::vector<std::string> > >(
"Indexer Names");
44 Teuchos::RCP<const panzer::PureBasis> basis;
45 if(p.isType< Teuchos::RCP<panzer::PureBasis> >(
"Basis"))
46 basis = p.get< Teuchos::RCP<panzer::PureBasis> >(
"Basis");
48 basis = p.get< Teuchos::RCP<const panzer::PureBasis> >(
"Basis");
51 for (std::size_t fd = 0; fd < names.size(); ++fd) {
53 PHX::MDField<ScalarT,Cell,NODE>(names[fd],basis->functional);
61 if (p.isType<
bool>(
"Use Time Derivative Solution Vector"))
64 if (p.isType<std::string>(
"Global Data Key"))
67 this->setName(
"Gather Tangent");
76 TEUCHOS_ASSERT(gatherFields_.size() == indexerNames_->size());
78 fieldIds_.resize(gatherFields_.size());
80 gatherFieldsVoV_.initialize(
"GatherSolution_Teptra<Tangent>",gatherFields_.size());
82 for (std::size_t fd = 0; fd < gatherFields_.size(); ++fd) {
83 const std::string& fieldName = (*indexerNames_)[fd];
84 fieldIds_[fd] = globalIndexer_->getFieldNum(fieldName);
85 gatherFieldsVoV_.addView(gatherFields_[fd].get_static_view(),fd);
88 gatherFieldsVoV_.syncHostToDevice();
90 indexerNames_ = Teuchos::null;
99 using Teuchos::rcp_dynamic_cast;
104 if (d.gedc->containsDataObject(globalDataKey_)) {
105 RCP<GlobalEvaluationData> ged = d.gedc->getDataObject(globalDataKey_);
106 RCP<LOCPair_GlobalEvaluationData> loc_pair =
107 rcp_dynamic_cast<LOCPair_GlobalEvaluationData>(ged);
109 if(loc_pair!=Teuchos::null) {
110 Teuchos::RCP<LinearObjContainer> loc = loc_pair->getGhostedLOC();
111 tpetraContainer_ = rcp_dynamic_cast<LOC>(loc,
true);
114 if(tpetraContainer_==Teuchos::null) {
115 tpetraContainer_ = rcp_dynamic_cast<LOC>(ged,
true);
127 if (tpetraContainer_ == Teuchos::null)
132 std::string blockId = this->wda(workset).block_id;
134 Teuchos::RCP<typename LOC::VectorType> x;
135 if (useTimeDerivativeSolutionVector_)
138 x = tpetraContainer_->get_x();
140 auto cellLocalIdsKokkos = this->wda(workset).getLocalCellIDs();
141 auto lids = globalIndexer_->getLIDs();
142 auto vov = Teuchos::rcp_dynamic_cast<const panzer::DOFManager>(globalIndexer_,
true)->getGIDFieldOffsetsKokkos(blockId,fieldIds_);
143 auto gidFieldOffsets = vov.getViewDevice();
144 auto gatherFieldsDevice = gatherFieldsVoV_.getViewDevice();
145 auto x_view = x->getLocalViewDevice(Tpetra::Access::ReadWrite);
146 Kokkos::MDRangePolicy<PHX::Device::execution_space,Kokkos::Rank<2>> policy({0,0},{cellLocalIdsKokkos.extent(0),gidFieldOffsets.extent(0)});
147 Kokkos::parallel_for(
"GatherSolutionTpetra<Tangent>",policy,KOKKOS_LAMBDA(
const int worksetCellIndex,
const int fieldIndex) {
148 for(std::size_t basis=0;basis<gidFieldOffsets(fieldIndex).extent(0);basis++) {
149 int offset = gidFieldOffsets(fieldIndex)(basis);
150 LO lid =
lids(cellLocalIdsKokkos(worksetCellIndex),offset);
151 auto& gf_ref = (gatherFieldsDevice[fieldIndex])(worksetCellIndex,basis);
152 gf_ref = x_view(lid,0);