MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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"
57 #include "MueLu_PerfUtils_fwd.hpp"
58 #include "MueLu_PFactory.hpp"
59 #include "MueLu_Utilities_fwd.hpp"
60 
61 #include "Intrepid2_Basis.hpp"
62 
63 #include "Kokkos_DynRankView.hpp"
64 
65 #include <Xpetra_Import_fwd.hpp>
66 
67 namespace MueLu {
68 
109 template <class Scalar = DefaultScalar,
112  class Node = DefaultNode>
114 #undef MUELU_INTREPIDPCOARSENFACTORY_SHORT
115 #include "MueLu_UseShortNames.hpp"
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 
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 }; // class IntrepidPCoarsenFactory
186 
187 /* Utility functions for use with Intrepid */
188 namespace MueLuIntrepid {
189 
190 template <class Scalar, class KokkosExecutionSpace>
192 
193 template <class Scalar, class KokkosDeviceType>
194 void IntrepidGetLoNodeInHi(const Teuchos::RCP<Intrepid2::Basis<typename KokkosDeviceType::execution_space, Scalar, Scalar> > &hi_basis,
195  const Teuchos::RCP<Intrepid2::Basis<typename KokkosDeviceType::execution_space, Scalar, Scalar> > &lo_basis,
196  std::vector<size_t> &lo_node_in_hi,
197  Kokkos::DynRankView<Scalar, KokkosDeviceType> &hi_DofCoords);
198 
199 template <class LocalOrdinal, class GlobalOrdinal, class Node, class LOFieldContainer>
200 void GenerateLoNodeInHiViaGIDs(const std::vector<std::vector<size_t> > &candidates, const LOFieldContainer &hi_elemToNode,
202  LOFieldContainer &lo_elemToHiRepresentativeNode);
203 
204 template <class LocalOrdinal, class LOFieldContainer>
205 void BuildLoElemToNode(const LOFieldContainer &hi_elemToNode,
206  const std::vector<bool> &hi_nodeIsOwned,
207  const std::vector<size_t> &lo_node_in_hi,
208  const Teuchos::ArrayRCP<const int> &hi_isDirichlet,
209  LOFieldContainer &lo_elemToNode,
210  std::vector<bool> &lo_nodeIsOwned,
211  std::vector<LocalOrdinal> &hi_to_lo_map,
212  int &lo_numOwnedNodes);
213 
214 template <class LocalOrdinal, class LOFieldContainer>
215 void BuildLoElemToNodeViaRepresentatives(const LOFieldContainer &hi_elemToNode,
216  const std::vector<bool> &hi_nodeIsOwned,
217  const LOFieldContainer &lo_elemToHiRepresentativeNode,
218  LOFieldContainer &lo_elemToNode,
219  std::vector<bool> &lo_nodeIsOwned,
220  std::vector<LocalOrdinal> &hi_to_lo_map,
221  int &lo_numOwnedNodes);
222 
223 template <class LocalOrdinal, class GlobalOrdinal, class Node>
224 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);
225 
226 template <class Basis, class SCFieldContainer>
227 void GenerateRepresentativeBasisNodes(const Basis &basis, const SCFieldContainer &ReferenceNodeLocations, const double threshold, std::vector<std::vector<size_t> > &representative_node_candidates);
228 
229 // ! Given an element to (global) node map and a basis, determine one global ordinal per geometric entity (vertex, edge, face,
230 // ! interior). On exit, seeds container is of dimension (spaceDim+1), and contains a sorted vector of local ordinals
231 // ! belonging to entities of that dimension. Only locally-owned degrees of freedom (as determined by rowMap and columnMap)
232 // ! will be stored in seeds.
233 template <class Basis, class LOFieldContainer, class LocalOrdinal, class GlobalOrdinal, class Node>
234 void FindGeometricSeedOrdinals(Teuchos::RCP<Basis> basis, const LOFieldContainer &elementToNodeMap,
235  std::vector<std::vector<LocalOrdinal> > &seeds,
238 
239 } // namespace MueLuIntrepid
240 } // namespace MueLu
241 
242 #define MUELU_INTREPIDPCOARSENFACTORY_SHORT
243 #endif // MUELU_INTREPIDPCOARSENFACTORY_DECL_HPP
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)
MueLu::DefaultLocalOrdinal LocalOrdinal
Teuchos::RCP< Intrepid2::Basis< KokkosExecutionSpace, Scalar, Scalar > > BasisFactory(const std::string &name, int &degree)
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)
Factory for building transfer operators based on coarsening in polynomial degree, following the Intre...
Tpetra::KokkosClassic::DefaultNode::DefaultNodeType DefaultNode
void BuildP(Level &fineLevel, Level &coarseLevel) const
Abstract Build method.
MueLu::DefaultNode Node
Kokkos::DynRankView< LocalOrdinal, typename Node::device_type > LOFieldContainer
IntrepidPCoarsenFactory()
Constructor. User can supply a factory for generating the tentative prolongator.
MueLu::DefaultScalar Scalar
Tpetra::Details::DefaultTypes::scalar_type DefaultScalar
MueLu::DefaultGlobalOrdinal GlobalOrdinal
Class that holds all level-specific information.
Definition: MueLu_Level.hpp:99
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)
Kokkos::DynRankView< double, typename Node::device_type > SCFieldContainer
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)
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
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
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
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)
Intrepid2::Basis< typename Node::device_type::execution_space, double, double > Basis
void Build(Level &fineLevel, Level &coarseLevel) const
Build method.
void GenerateRepresentativeBasisNodes(const Basis &basis, const SCFieldContainer &ReferenceNodeLocations, const double threshold, std::vector< std::vector< size_t > > &representative_node_candidates)
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
Factory that provides an interface for a concrete implementation of a prolongation operator...