MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MueLu_CreateXpetraPreconditioner.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // MueLu: A package for multigrid based preconditioning
4 //
5 // Copyright 2012 NTESS and the MueLu contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef PACKAGES_MUELU_ADAPTERS_XPETRA_MUELU_CREATEXPETRAPRECONDITIONER_HPP_
11 #define PACKAGES_MUELU_ADAPTERS_XPETRA_MUELU_CREATEXPETRAPRECONDITIONER_HPP_
12 
15 
17 #include <Xpetra_CrsMatrix.hpp>
18 #include <Xpetra_MultiVector.hpp>
19 
20 #include <MueLu.hpp>
21 
22 #include <MueLu_Exceptions.hpp>
23 #include <MueLu_Hierarchy.hpp>
24 #include <MueLu_MasterList.hpp>
25 #include <MueLu_ParameterListInterpreter.hpp>
26 #include <MueLu_Utilities.hpp>
27 #include <MueLu_HierarchyUtils.hpp>
29 #include <stdlib.h>
30 
32 
33 namespace MueLu {
34 
43 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
46  const Teuchos::ParameterList& inParamList) {
47  using SC = Scalar;
48  using LO = LocalOrdinal;
49  using GO = GlobalOrdinal;
50  using NO = Node;
51 
56 
57  bool hasParamList = inParamList.numParams();
58 
59  RCP<HierarchyManager> mueLuFactory;
60 
61  // Rip off non-serializable data before validation
62  Teuchos::ParameterList nonSerialList, paramList;
63  MueLu::ExtractNonSerializableData(inParamList, paramList, nonSerialList);
64 
65  std::string label;
66  if (hasParamList && paramList.isParameter("hierarchy label")) {
67  label = paramList.get<std::string>("hierarchy label");
68  paramList.remove("hierarchy label");
69  } else
70  label = op->getObjectLabel();
71 
73  std::string timerName;
74 
75  // Do Kokkos tuning, if requested
76  if (paramList.isSublist("kokkos tuning: muelu parameter mapping") &&
77  paramList.sublist("kokkos tuning: muelu parameter mapping").isParameter("kokkos context id")) {
78  // Time tuning separately
79  if (label != "")
80  timerName = "MueLu tuning time (" + label + ")";
81  else
82  timerName = "MueLu tuning time";
83  tm = Teuchos::TimeMonitor::getNewTimer(timerName);
84  tm->start();
85 
86  MueLu::KokkosTuningInterface KokkosTuner(op->getMap()->getComm());
87  KokkosTuner.SetParameterList(paramList);
88  KokkosTuner.SetMueLuParameters(paramList);
89  tm->stop();
90  tm->incrementNumCalls();
91  tm = Teuchos::null;
92  }
93 
94  // Setup Timer
95  if (label != "")
96  timerName = "MueLu setup time (" + label + ")";
97  else
98  timerName = "MueLu setup time";
99 
100  tm = Teuchos::TimeMonitor::getNewTimer(timerName);
101  tm->start();
102 
103  std::string syntaxStr = "parameterlist: syntax";
104  if (hasParamList && paramList.isParameter(syntaxStr) && paramList.get<std::string>(syntaxStr) == "ml") {
105  paramList.remove(syntaxStr);
106  std::string paramXML = MueLu::ML2MueLuParameterTranslator::translate(paramList, "");
107  paramList = *Teuchos::getParametersFromXmlString(paramXML);
108  }
109  mueLuFactory = rcp(new ParameterListInterpreter(paramList, op->getDomainMap()->getComm()));
110 
111  // Create Hierarchy
112  RCP<Hierarchy> H = mueLuFactory->CreateHierarchy(label);
113  H->setlib(op->getDomainMap()->lib());
114 
115  // Set fine level operator
116  H->GetLevel(0)->Set("A", op);
117  H->SetProcRankVerbose(op->getDomainMap()->getComm()->getRank());
118 
119  // Stick the non-serializible data on the hierarchy.
120  HierarchyUtils::AddNonSerializableDataToHierarchy(*mueLuFactory, *H, nonSerialList);
121 
122  mueLuFactory->SetupHierarchy(*H);
123 
124  tm->stop();
125  tm->incrementNumCalls();
126 
127  if (H->GetVerbLevel() & Statistics0) {
128  const bool alwaysWriteLocal = true;
129  const bool writeGlobalStats = true;
130  const bool writeZeroTimers = false;
131  const bool ignoreZeroTimers = true;
132  const std::string filter = timerName;
133  Teuchos::TimeMonitor::summarize(op->getRowMap()->getComm().ptr(), H->GetOStream(Statistics0), alwaysWriteLocal, writeGlobalStats,
134  writeZeroTimers, Teuchos::Union, filter, ignoreZeroTimers);
135  }
136 
137  tm->reset();
138 
139  return H;
140 }
141 
150 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
153  const std::string& xmlFileName) {
154  Teuchos::ParameterList paramList;
155  Teuchos::updateParametersFromXmlFileAndBroadcast(xmlFileName, Teuchos::Ptr<Teuchos::ParameterList>(&paramList), *op->getDomainMap()->getComm());
156  return CreateXpetraPreconditioner<Scalar, LocalOrdinal, GlobalOrdinal, Node>(op, paramList);
157 }
158 
166 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
169  Teuchos::ParameterList paramList;
170  return CreateXpetraPreconditioner<Scalar, LocalOrdinal, GlobalOrdinal, Node>(op, paramList);
171 }
172 
180 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
183  std::string label = H->GetLevel(0)->getObjectLabel();
184 
185  std::string timerName;
186  if (label != "")
187  timerName = "MueLu setup time (" + label + ")";
188  else
189  timerName = "MueLu setup time";
191  tm->start();
192 
193  typedef Scalar SC;
194  typedef LocalOrdinal LO;
195  typedef GlobalOrdinal GO;
196  typedef Node NO;
197 
198  typedef Xpetra::Matrix<SC, LO, GO, NO> Matrix;
199  typedef Xpetra::Operator<SC, LO, GO, NO> Operator;
200 
202  "MueLu::ReuseXpetraPreconditioner: Hierarchy has no levels in it");
203  TEUCHOS_TEST_FOR_EXCEPTION(!H->GetLevel(0)->IsAvailable("A"), Exceptions::RuntimeError,
204  "MueLu::ReuseXpetraPreconditioner: Hierarchy has no fine level operator");
205  RCP<Level> level0 = H->GetLevel(0);
206 
207  RCP<Operator> O0 = level0->Get<RCP<Operator>>("A");
208  RCP<Matrix> A0 = Teuchos::rcp_dynamic_cast<Matrix>(O0);
209 
210  if (!A0.is_null()) {
211  // If a user provided a "number of equations" argument in a parameter list
212  // during the initial setup, we must honor that settings and reuse it for
213  // all consequent setups.
214  A->SetFixedBlockSize(A0->GetFixedBlockSize());
215  }
216  level0->Set("A", A);
217 
218  H->SetupRe();
219 
220  tm->stop();
221  tm->incrementNumCalls();
222 
223  if (H->GetVerbLevel() & Statistics0) {
224  const bool alwaysWriteLocal = true;
225  const bool writeGlobalStats = true;
226  const bool writeZeroTimers = false;
227  const bool ignoreZeroTimers = true;
228  const std::string filter = timerName;
229  Teuchos::TimeMonitor::summarize(A->getRowMap()->getComm().ptr(), H->GetOStream(Statistics0), alwaysWriteLocal, writeGlobalStats,
230  writeZeroTimers, Teuchos::Union, filter, ignoreZeroTimers);
231  }
232 
233  tm->reset();
234 }
235 
236 } // namespace MueLu
237 
238 #define XPETRA_CREATEXPETRAPRECONDITIONER_SHORT
239 
240 #endif /* PACKAGES_MUELU_ADAPTERS_XPETRA_MUELU_CREATEXPETRAPRECONDITIONER_HPP_ */
MueLu::DefaultLocalOrdinal LocalOrdinal
Teuchos::FancyOStream & GetOStream(MsgType type, int thisProcRankOnly=0) const
Get an output stream for outputting the input message type.
RCP< Level > & GetLevel(const int levelID=0)
Retrieve a certain level from hierarchy.
static void AddNonSerializableDataToHierarchy(HierarchyManager &HM, Hierarchy &H, const ParameterList &nonSerialList)
Add non-serializable data to Hierarchy.
GlobalOrdinal GO
T & get(const std::string &name, T def_value)
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
void ReuseXpetraPreconditioner(const Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >> &A, Teuchos::RCP< MueLu::Hierarchy< Scalar, LocalOrdinal, GlobalOrdinal, Node >> &H)
Helper function to reuse an existing MueLu preconditioner.
LocalOrdinal LO
Ordinal numParams() const
MueLu::DefaultNode Node
void SetParameterList(Teuchos::ParameterList &inParams)
static RCP< Time > getNewTimer(const std::string &name)
virtual RCP< Hierarchy > CreateHierarchy() const
Create an empty Hierarchy object.
Teuchos::RCP< MueLu::Hierarchy< Scalar, LocalOrdinal, GlobalOrdinal, Node > > CreateXpetraPreconditioner(Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >> op, const Teuchos::ParameterList &inParamList)
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix...
bool isParameter(const std::string &name) const
Print statistics that do not involve significant additional computation.
bool remove(std::string const &name, bool throwIfNotExists=true)
void start(bool reset=false)
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
MueLu::DefaultScalar Scalar
MueLu::DefaultGlobalOrdinal GlobalOrdinal
static void summarize(Ptr< const Comm< int > > comm, std::ostream &out=std::cout, const bool alwaysWriteLocal=false, const bool writeGlobalStats=true, const bool writeZeroTimers=true, const ECounterSetOp setOp=Intersection, const std::string &filter="", const bool ignoreZeroTimers=false)
double stop()
bool isSublist(const std::string &name) const
VerbLevel GetVerbLevel() const
Get the verbosity level.
virtual void SetupHierarchy(Hierarchy &H) const
Setup Hierarchy object.
int SetProcRankVerbose(int procRank) const
Set proc rank used for printing.
Scalar SC
Node NO
ParameterList & sublist(const std::string &name, bool mustAlreadyExist=false, const std::string &docString="")
Exception throws to report errors in the internal logical of the program.
void setlib(Xpetra::UnderlyingLib inlib)
void incrementNumCalls()
static std::string translate(Teuchos::ParameterList &paramList, const std::string &defaultVals="")
: Translate ML parameters to MueLu parameter XML string
Provides methods to build a multigrid hierarchy and apply multigrid cycles.
long ExtractNonSerializableData(const Teuchos::ParameterList &inList, Teuchos::ParameterList &serialList, Teuchos::ParameterList &nonSerialList)
Extract non-serializable data from level-specific sublists and move it to a separate parameter list...
bool is_null() const