10 #ifndef PACKAGES_MUELU_ADAPTERS_XPETRA_MUELU_CREATEXPETRAPRECONDITIONER_HPP_
11 #define PACKAGES_MUELU_ADAPTERS_XPETRA_MUELU_CREATEXPETRAPRECONDITIONER_HPP_
23 #include <MueLu_Hierarchy.hpp>
25 #include <MueLu_ParameterListInterpreter.hpp>
26 #include <MueLu_Utilities.hpp>
27 #include <MueLu_HierarchyUtils.hpp>
43 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
57 bool hasParamList = inParamList.
numParams();
66 if (hasParamList && paramList.
isParameter(
"hierarchy label")) {
67 label = paramList.
get<std::string>(
"hierarchy label");
68 paramList.
remove(
"hierarchy label");
70 label = op->getObjectLabel();
73 std::string timerName;
76 if (paramList.
isSublist(
"kokkos tuning: muelu parameter mapping") &&
77 paramList.
sublist(
"kokkos tuning: muelu parameter mapping").
isParameter(
"kokkos context id")) {
80 timerName =
"MueLu tuning time (" + label +
")";
82 timerName =
"MueLu tuning time";
88 KokkosTuner.SetMueLuParameters(paramList);
96 timerName =
"MueLu setup time (" + label +
")";
98 timerName =
"MueLu setup time";
103 std::string syntaxStr =
"parameterlist: syntax";
104 if (hasParamList && paramList.
isParameter(syntaxStr) && paramList.
get<std::string>(syntaxStr) ==
"ml") {
105 paramList.
remove(syntaxStr);
107 paramList = *Teuchos::getParametersFromXmlString(paramXML);
113 H->
setlib(op->getDomainMap()->lib());
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;
134 writeZeroTimers, Teuchos::Union, filter, ignoreZeroTimers);
150 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
153 const std::string& xmlFileName) {
156 return CreateXpetraPreconditioner<Scalar, LocalOrdinal, GlobalOrdinal, Node>(op, paramList);
166 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
170 return CreateXpetraPreconditioner<Scalar, LocalOrdinal, GlobalOrdinal, Node>(op, paramList);
180 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
183 std::string label = H->GetLevel(0)->getObjectLabel();
185 std::string timerName;
187 timerName =
"MueLu setup time (" + label +
")";
189 timerName =
"MueLu setup time";
202 "MueLu::ReuseXpetraPreconditioner: Hierarchy has no levels in it");
204 "MueLu::ReuseXpetraPreconditioner: Hierarchy has no fine level operator");
208 RCP<Matrix> A0 = Teuchos::rcp_dynamic_cast<Matrix>(O0);
214 A->SetFixedBlockSize(A0->GetFixedBlockSize());
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;
230 writeZeroTimers, Teuchos::Union, filter, ignoreZeroTimers);
238 #define XPETRA_CREATEXPETRAPRECONDITIONER_SHORT
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.
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.
Ordinal numParams() const
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)
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.
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)
static std::string translate(Teuchos::ParameterList ¶mList, 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...