MueLu Version of the Day
Loading...
Searching...
No Matches
MueLu_IntrepidPCoarsenFactory_decl.hpp
Go to the documentation of this file.
1// @HEADER
2//
3// ***********************************************************************
4//
5// MueLu: A package for multigrid based preconditioning
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// Ray Tuminaro (rstumin@sandia.gov)
42//
43// ***********************************************************************
44//
45// @HEADER
46#ifndef MUELU_IPCFACTORY_DECL_HPP
47#define MUELU_IPCFACTORY_DECL_HPP
48
49#include <string>
50#include <vector>
51
52#include "MueLu_ConfigDefs.hpp"
54
55#include "MueLu_Level_fwd.hpp"
58#include "MueLu_PFactory.hpp"
60
61#include "Intrepid2_Basis.hpp"
62
63#include "Kokkos_DynRankView.hpp"
64
65#include <Xpetra_Import_fwd.hpp>
66
67namespace MueLu {
68
108
109template <class Scalar = DefaultScalar,
112 class Node = DefaultNode>
114#undef MUELU_INTREPIDPCOARSENFACTORY_SHORT
116
117 public:
118 typedef Kokkos::DynRankView<LocalOrdinal,typename Node::device_type> LOFieldContainer;
119 typedef Kokkos::DynRankView<double,typename Node::device_type> SCFieldContainer;
120 typedef Intrepid2::Basis<typename Node::device_type::execution_space,double,double> Basis; // Hardwired on purpose
121
123
124
129
132
133 RCP<const ParameterList> GetValidParameterList() const;
134
136
138
139
140 void DeclareInput(Level &fineLevel, Level &coarseLevel) const;
141
143
145
146
152 void Build(Level& fineLevel, Level &coarseLevel) const;
153
154 void BuildP(Level &fineLevel, Level &coarseLevel) const; //Build()
155
157 private:
159
160 // NOTE: This is hardwired to double on purpose.
162 const std::vector<bool> & hi_nodeIsOwned,
163 const SCFieldContainer & hi_DofCoords,
164 const std::vector<size_t> &lo_node_in_hi,
165 const Basis &lo_Basis,
166 const std::vector<LocalOrdinal> & hi_to_lo_map,
167 const Teuchos::RCP<const Map> & lo_colMap,
168 const Teuchos::RCP<const Map> & lo_domainMap,
169 const Teuchos::RCP<const Map> & hi_map,
170 Teuchos::RCP<Matrix>& P) const;
172
173 // NOTE: This is hardwired to double on purpose.
175 const std::vector<bool> & hi_nodeIsOwned,
176 const SCFieldContainer & hi_DofCoords,
177 const LOFieldContainer & lo_elemToHiRepresentativeNode,
178 const Basis &lo_basis,
179 const std::vector<LocalOrdinal> & hi_to_lo_map,
180 const Teuchos::RCP<const Map> & lo_colMap,
181 const Teuchos::RCP<const Map> & lo_domainMap,
182 const Teuchos::RCP<const Map> & hi_map,
183 Teuchos::RCP<Matrix>& P) const;
184
185
186 }; //class IntrepidPCoarsenFactory
187
188
189 /* Utility functions for use with Intrepid */
190 namespace MueLuIntrepid {
191
192 template<class Scalar,class KokkosExecutionSpace>
193 Teuchos::RCP<Intrepid2::Basis<KokkosExecutionSpace,Scalar,Scalar> > BasisFactory(const std::string & name, int & degree);
194
195 template<class Scalar,class KokkosDeviceType>
196 void IntrepidGetLoNodeInHi(const Teuchos::RCP<Intrepid2::Basis<typename KokkosDeviceType::execution_space,Scalar,Scalar> > &hi_basis,
197 const Teuchos::RCP<Intrepid2::Basis<typename KokkosDeviceType::execution_space,Scalar,Scalar> > &lo_basis,
198 std::vector<size_t> & lo_node_in_hi,
199 Kokkos::DynRankView<Scalar,KokkosDeviceType> & hi_DofCoords);
200
201 template<class LocalOrdinal, class GlobalOrdinal, class Node, class LOFieldContainer>
202 void GenerateLoNodeInHiViaGIDs(const std::vector<std::vector<size_t> > & candidates,const LOFieldContainer & hi_elemToNode,
203 RCP<const Xpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > & hi_columnMap,
204 LOFieldContainer & lo_elemToHiRepresentativeNode);
205
206 template <class LocalOrdinal, class LOFieldContainer>
207 void BuildLoElemToNode(const LOFieldContainer & hi_elemToNode,
208 const std::vector<bool> & hi_nodeIsOwned,
209 const std::vector<size_t> & lo_node_in_hi,
210 const Teuchos::ArrayRCP<const int> & hi_isDirichlet,
211 LOFieldContainer & lo_elemToNode,
212 std::vector<bool> & lo_nodeIsOwned,
213 std::vector<LocalOrdinal> & hi_to_lo_map,
214 int & lo_numOwnedNodes);
215
216 template <class LocalOrdinal, class LOFieldContainer>
217 void BuildLoElemToNodeViaRepresentatives(const LOFieldContainer & hi_elemToNode,
218 const std::vector<bool> & hi_nodeIsOwned,
219 const LOFieldContainer & lo_elemToHiRepresentativeNode,
220 LOFieldContainer & lo_elemToNode,
221 std::vector<bool> & lo_nodeIsOwned,
222 std::vector<LocalOrdinal> & hi_to_lo_map,
223 int & lo_numOwnedNodes);
224
225
226 template <class LocalOrdinal, class GlobalOrdinal, class Node>
227 void GenerateColMapFromImport(const Xpetra::Import<LocalOrdinal,GlobalOrdinal,Node> & hi_importer,const std::vector<LocalOrdinal> &hi_to_lo_map,const Xpetra::Map<LocalOrdinal,GlobalOrdinal,Node> & lo_domainMap, const size_t & lo_columnMapLength, RCP<const Xpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > & lo_columnMap);
228
229
230 template<class Basis, class SCFieldContainer>
231 void GenerateRepresentativeBasisNodes(const Basis & basis, const SCFieldContainer & ReferenceNodeLocations, const double threshold, std::vector<std::vector<size_t> > & representative_node_candidates);
232
233 // ! Given an element to (global) node map and a basis, determine one global ordinal per geometric entity (vertex, edge, face,
234 // ! interior). On exit, seeds container is of dimension (spaceDim+1), and contains a sorted vector of local ordinals
235 // ! belonging to entities of that dimension. Only locally-owned degrees of freedom (as determined by rowMap and columnMap)
236 // ! will be stored in seeds.
237 template<class Basis, class LOFieldContainer, class LocalOrdinal, class GlobalOrdinal, class Node>
238 void FindGeometricSeedOrdinals(Teuchos::RCP<Basis> basis, const LOFieldContainer &elementToNodeMap,
239 std::vector<std::vector<LocalOrdinal> > &seeds,
240 const Xpetra::Map<LocalOrdinal,GlobalOrdinal,Node> &rowMap,
241 const Xpetra::Map<LocalOrdinal,GlobalOrdinal,Node> &columnMap);
242
243 }//namespace MueLuIntrepid
244} //namespace MueLu
245
246#define MUELU_INTREPIDPCOARSENFACTORY_SHORT
247#endif // MUELU_INTREPIDPCOARSENFACTORY_DECL_HPP
MueLu::DefaultLocalOrdinal LocalOrdinal
MueLu::DefaultScalar Scalar
MueLu::DefaultGlobalOrdinal GlobalOrdinal
MueLu::DefaultNode Node
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
Kokkos::DynRankView< LocalOrdinal, typename Node::device_type > LOFieldContainer
void GenerateLinearCoarsening_pn_kirby_to_p1(const LOFieldContainer &hi_elemToNode, const std::vector< bool > &hi_nodeIsOwned, const SCFieldContainer &hi_DofCoords, const std::vector< size_t > &lo_node_in_hi, const Basis &lo_Basis, const std::vector< LocalOrdinal > &hi_to_lo_map, const Teuchos::RCP< const Map > &lo_colMap, const Teuchos::RCP< const Map > &lo_domainMap, const Teuchos::RCP< const Map > &hi_map, Teuchos::RCP< Matrix > &P) const
Kokkos::DynRankView< double, typename Node::device_type > SCFieldContainer
IntrepidPCoarsenFactory()
Constructor. User can supply a factory for generating the tentative prolongator.
void BuildP(Level &fineLevel, Level &coarseLevel) const
Abstract Build method.
Intrepid2::Basis< typename Node::device_type::execution_space, double, double > Basis
void Build(Level &fineLevel, Level &coarseLevel) const
Build method.
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
void GenerateLinearCoarsening_pn_kirby_to_pm(const LOFieldContainer &hi_elemToNode, const std::vector< bool > &hi_nodeIsOwned, const SCFieldContainer &hi_DofCoords, const LOFieldContainer &lo_elemToHiRepresentativeNode, const Basis &lo_basis, const std::vector< LocalOrdinal > &hi_to_lo_map, const Teuchos::RCP< const Map > &lo_colMap, const Teuchos::RCP< const Map > &lo_domainMap, const Teuchos::RCP< const Map > &hi_map, Teuchos::RCP< Matrix > &P) const
Class that holds all level-specific information.
void FindGeometricSeedOrdinals(Teuchos::RCP< Basis > basis, const LOFieldContainer &elementToNodeMap, std::vector< std::vector< LocalOrdinal > > &seeds, const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > &rowMap, const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > &columnMap)
void IntrepidGetLoNodeInHi(const Teuchos::RCP< Intrepid2::Basis< typename KokkosDeviceType::execution_space, Scalar, Scalar > > &hi_basis, const Teuchos::RCP< Intrepid2::Basis< typename KokkosDeviceType::execution_space, Scalar, Scalar > > &lo_basis, std::vector< size_t > &lo_node_in_hi, Kokkos::DynRankView< Scalar, KokkosDeviceType > &hi_DofCoords)
void GenerateRepresentativeBasisNodes(const Basis &basis, const SCFieldContainer &ReferenceNodeLocations, const double threshold, std::vector< std::vector< size_t > > &representative_node_candidates)
void GenerateColMapFromImport(const Xpetra::Import< LocalOrdinal, GlobalOrdinal, Node > &hi_importer, const std::vector< LocalOrdinal > &hi_to_lo_map, const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > &lo_domainMap, const size_t &lo_columnMapLength, RCP< const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &lo_columnMap)
void BuildLoElemToNodeViaRepresentatives(const LOFieldContainer &hi_elemToNode, const std::vector< bool > &hi_nodeIsOwned, const LOFieldContainer &lo_elemToHiRepresentativeNode, LOFieldContainer &lo_elemToNode, std::vector< bool > &lo_nodeIsOwned, std::vector< LocalOrdinal > &hi_to_lo_map, int &lo_numOwnedNodes)
void BuildLoElemToNode(const LOFieldContainer &hi_elemToNode, const std::vector< bool > &hi_nodeIsOwned, const std::vector< size_t > &lo_node_in_hi, const Teuchos::ArrayRCP< const int > &hi_isDirichlet, LOFieldContainer &lo_elemToNode, std::vector< bool > &lo_nodeIsOwned, std::vector< LocalOrdinal > &hi_to_lo_map, int &lo_numOwnedNodes)
void GenerateLoNodeInHiViaGIDs(const std::vector< std::vector< size_t > > &candidates, const LOFieldContainer &hi_elemToNode, RCP< const Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &hi_columnMap, LOFieldContainer &lo_elemToHiRepresentativeNode)
Teuchos::RCP< Intrepid2::Basis< KokkosExecutionSpace, Scalar, Scalar > > BasisFactory(const std::string &name, int &degree)
Namespace for MueLu classes and methods.
Tpetra::KokkosClassic::DefaultNode::DefaultNodeType DefaultNode
Tpetra::Details::DefaultTypes::scalar_type DefaultScalar