46 #ifndef MUELU_FACTORYMANAGER_DEF_HPP
47 #define MUELU_FACTORYMANAGER_DEF_HPP
49 #include <Teuchos_ParameterList.hpp>
52 #include "MueLu_AmalgamationFactory.hpp"
53 #include "MueLu_CoalesceDropFactory.hpp"
54 #include "MueLu_CoarseMapFactory.hpp"
55 #include "MueLu_ConstraintFactory.hpp"
56 #include "MueLu_AggregateQualityEstimateFactory.hpp"
57 #include "MueLu_CoordinatesTransferFactory.hpp"
58 #include "MueLu_DirectSolver.hpp"
59 #include "MueLu_LineDetectionFactory.hpp"
62 #include "MueLu_NullspaceFactory.hpp"
63 #include "MueLu_PatternFactory.hpp"
64 #include "MueLu_RAPFactory.hpp"
65 #include "MueLu_RepartitionHeuristicFactory.hpp"
66 #include "MueLu_RepartitionFactory.hpp"
67 #include "MueLu_SaPFactory.hpp"
68 #include "MueLu_ScaledNullspaceFactory.hpp"
69 #include "MueLu_SmootherFactory.hpp"
70 #include "MueLu_TentativePFactory.hpp"
71 #include "MueLu_TransPFactory.hpp"
72 #include "MueLu_TrilinosSmoother.hpp"
73 #include "MueLu_UncoupledAggregationFactory.hpp"
74 #include "MueLu_HybridAggregationFactory.hpp"
75 #include "MueLu_ZoltanInterface.hpp"
76 #include "MueLu_InterfaceMappingTransferFactory.hpp"
77 #include "MueLu_InterfaceAggregationFactory.hpp"
79 #ifdef HAVE_MUELU_KOKKOS_REFACTOR
80 #include "MueLu_AmalgamationFactory_kokkos.hpp"
81 #include "MueLu_CoalesceDropFactory_kokkos.hpp"
82 #include "MueLu_CoarseMapFactory_kokkos.hpp"
83 #include "MueLu_CoordinatesTransferFactory_kokkos.hpp"
84 #include "MueLu_NullspaceFactory_kokkos.hpp"
85 #include "MueLu_SaPFactory_kokkos.hpp"
86 #include "MueLu_TentativePFactory_kokkos.hpp"
87 #include "MueLu_UncoupledAggregationFactory_kokkos.hpp"
95 #ifndef HAVE_MUELU_KOKKOS_REFACTOR
96 #define MUELU_KOKKOS_FACTORY(varName, oldFactory, newFactory) \
97 SetAndReturnDefaultFactory(varName, rcp(new oldFactory()));
99 #define MUELU_KOKKOS_FACTORY(varName, oldFactory, newFactory) \
100 (!useKokkos_) ? SetAndReturnDefaultFactory(varName, rcp(new oldFactory())) : \
101 SetAndReturnDefaultFactory(varName, rcp(new newFactory()));
104 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
106 factoryTable_[varName] = factory;
109 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
111 if (factoryTable_.count(varName)) {
113 return factoryTable_.find(varName)->second;
117 return GetDefaultFactory(varName);
120 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
122 return Teuchos::rcp_const_cast<FactoryBase>(GetFactory(varName));
125 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
127 if (factoryTable_.count(varName))
return true;
131 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
133 if (defaultFactoryTable_.count(varName)) {
135 return defaultFactoryTable_.find(varName)->second;
139 if (varName ==
"A")
return SetAndReturnDefaultFactory(varName, rcp(
new RAPFactory()));
140 if (varName ==
"RAP Pattern")
return GetFactory(
"A");
141 if (varName ==
"AP Pattern")
return GetFactory(
"A");
143 if (varName ==
"P") {
145 RCP<Factory> factory;
146 #ifdef HAVE_MUELU_KOKKOS_REFACTOR
148 factory = rcp(
new SaPFactory_kokkos());
152 factory->SetFactory(
"P", GetFactory(
"Ptent"));
153 return SetAndReturnDefaultFactory(varName, factory);
155 if (varName ==
"Nullspace") {
157 RCP<Factory> factory;
158 #ifdef HAVE_MUELU_KOKKOS_REFACTOR
160 factory = rcp(
new NullspaceFactory_kokkos());
164 factory->SetFactory(
"Nullspace", GetFactory(
"Ptent"));
165 return SetAndReturnDefaultFactory(varName, factory);
167 if (varName ==
"Scaled Nullspace")
return SetAndReturnDefaultFactory(varName, rcp(
new ScaledNullspaceFactory()));
169 if (varName ==
"Coordinates")
return GetFactory(
"Ptent");
170 if (varName ==
"Node Comm")
return GetFactory(
"Ptent");
172 if (varName ==
"R")
return SetAndReturnDefaultFactory(varName, rcp(
new TransPFactory()));
173 #if defined(HAVE_MUELU_ZOLTAN) && defined(HAVE_MPI)
174 if (varName ==
"Partition")
return SetAndReturnDefaultFactory(varName, rcp(
new ZoltanInterface()));
177 if (varName ==
"Importer") {
184 if (varName ==
"number of partitions") {
191 if (varName ==
"repartition: heuristic target rows per process")
return GetFactory(
"number of partitions");
198 if (varName ==
"DofsPerNode")
return GetFactory(
"Graph");
199 if (varName ==
"Filtering")
return GetFactory(
"Graph");
200 if (varName ==
"LineDetection_VertLineIds")
return SetAndReturnDefaultFactory(varName, rcp(
new LineDetectionFactory()));
201 if (varName ==
"LineDetection_Layers")
return GetFactory(
"LineDetection_VertLineIds");
202 if (varName ==
"CoarseNumZLayers")
return GetFactory(
"LineDetection_VertLineIds");
205 if (varName ==
"K")
return GetFactory(
"A");
206 if (varName ==
"M")
return GetFactory(
"A");
207 if (varName ==
"Mdiag")
return GetFactory(
"A");
208 if (varName ==
"cfl-based shift array")
return GetFactory(
"A");
211 if (varName ==
"PreSmoother")
return GetFactory(
"Smoother");
212 if (varName ==
"PostSmoother")
return GetFactory(
"Smoother");
214 if (varName ==
"Ppattern") {
216 PpFact->SetFactory(
"P", GetFactory(
"Ptent"));
217 return SetAndReturnDefaultFactory(varName, PpFact);
219 if (varName ==
"Constraint")
return SetAndReturnDefaultFactory(varName, rcp(
new ConstraintFactory()));
221 if (varName ==
"Smoother") {
222 Teuchos::ParameterList smootherParamList;
223 smootherParamList.set(
"relaxation: type",
"Symmetric Gauss-Seidel");
224 smootherParamList.set(
"relaxation: sweeps", Teuchos::OrdinalTraits<LO>::one());
225 smootherParamList.set(
"relaxation: damping factor", Teuchos::ScalarTraits<Scalar>::one());
228 if (varName ==
"CoarseSolver")
return SetAndReturnDefaultFactory(varName, rcp(
new SmootherFactory(rcp(
new DirectSolver()), Teuchos::null)));
231 if (varName ==
"CoarseDualNodeID2PrimalNodeID")
return SetAndReturnDefaultFactory(varName, rcp(
new InterfaceAggregationFactory()));
232 #ifdef HAVE_MUELU_INTREPID2
234 if (varName ==
"pcoarsen: element to node map")
return GetFactory(
"P");
237 TEUCHOS_TEST_FOR_EXCEPTION(
true,
MueLu::Exceptions::RuntimeError,
"MueLu::FactoryManager::GetDefaultFactory(): No default factory available for building '" + varName +
"'.");
241 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
243 TEUCHOS_TEST_FOR_EXCEPTION(factory.is_null(),
Exceptions::RuntimeError,
"The default factory for building '" << varName <<
"' is null");
245 GetOStream(
Runtime1) <<
"Using default factory (" << factory->ShortClassName() <<
"["<<factory->GetID()<<
"] "<<
") for building '" << varName <<
"'." << std::endl;
247 defaultFactoryTable_[varName] = factory;
249 return defaultFactoryTable_[varName];
252 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
254 std::map<std::string, RCP<const FactoryBase> >::const_iterator it;
256 Teuchos::FancyOStream& fancy = GetOStream(
Debug);
258 fancy <<
"Users factory table (factoryTable_):" << std::endl;
259 for (it = factoryTable_.begin(); it != factoryTable_.end(); it++) {
260 fancy <<
" " << it->first <<
" -> ";
262 else if (!it->second.get()) fancy<<
"NULL";
264 fancy << it->second.get()->ShortClassName()<<
"["<<it->second.get()->GetID()<<
"]";
265 #ifdef HAVE_MUELU_DEBUG
272 fancy <<
"Default factory table (defaultFactoryTable_):" << std::endl;
273 for (it = defaultFactoryTable_.begin(); it != defaultFactoryTable_.end(); it++) {
274 fancy <<
" " << it->first <<
" -> ";
276 else if (!it->second.get()) fancy<<
"NULL";
278 fancy << it->second.get()->ShortClassName()<<
"["<<it->second.get()->GetID()<<
"]";
279 #ifdef HAVE_MUELU_DEBUG
288 #ifdef HAVE_MUELU_DEBUG
289 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
291 std::map<std::string, RCP<const FactoryBase> >::const_iterator it;
293 for (it = factoryTable_.begin(); it != factoryTable_.end(); it++)
294 if (!it->second.is_null())
295 it->second->ResetDebugData();
297 for (it = defaultFactoryTable_.begin(); it != defaultFactoryTable_.end(); it++)
298 if (!it->second.is_null())
299 it->second->ResetDebugData();
304 #undef MUELU_KOKKOS_FACTORY
#define MUELU_KOKKOS_FACTORY(varName, oldFactory, newFactory)
An factory which assigns each aggregate a quality estimate. Originally developed by Napov and Notay i...
AmalgamationFactory for subblocks of strided map based amalgamation data.
Factory for creating a graph base on a given matrix.
Factory for generating coarse level map. Used by TentativePFactory.
Factory for building the constraint operator.
Class that encapsulates direct solvers. Autoselection of AmesosSmoother or Amesos2Smoother according ...
Exception throws to report errors in the internal logical of the program.
This class specifies the default factory that should generate some data on a Level if the data does n...
const RCP< const FactoryBase > GetDefaultFactory(const std::string &varName) const
const RCP< const FactoryBase > SetAndReturnDefaultFactory(const std::string &varName, const RCP< const FactoryBase > &factory) const
void SetFactory(const std::string &varName, const RCP< const FactoryBase > &factory)
Set Factory.
bool hasFactory(const std::string &varName) const
Check.
const RCP< const FactoryBase > GetFactory(const std::string &varName) const
Get factory associated with a particular data name.
const RCP< FactoryBase > GetFactoryNonConst(const std::string &varName)
Get factory associated with a particular data name (NONCONST version)
Factory for building aggregates for Lagrange multipliers.
Factory for building line detection information.
static const NoFactory * get()
static const RCP< const NoFactory > getRCP()
Static Get() functions.
Factory for generating nullspace.
Factory for building nonzero patterns for energy minimization.
Factory for building coarse matrices.
Factory for building permutation matrix that can be be used to shuffle data (matrices,...
Factory for determing the number of partitions for rebalancing.
Factory for building Smoothed Aggregation prolongators.
Factory for generating a very special nullspace.
Generic Smoother Factory for generating the smoothers of the MG hierarchy.
Factory for building tentative prolongator.
Factory for building restriction operators.
Class that encapsulates external library smoothers.
Factory for building uncoupled aggregates.
Interface to Zoltan library.
Namespace for MueLu classes and methods.
@ Debug
Print additional debugging information.
@ Runtime1
Description of what is happening (more verbose)
std::string toString(const T &what)
Little helper function to convert non-string types to strings.