46 #ifndef MUELU_REBALANCEACFACTORY_DEF_HPP
47 #define MUELU_REBALANCEACFACTORY_DEF_HPP
49 #include <Xpetra_Matrix.hpp>
50 #include <Xpetra_CrsMatrix.hpp>
51 #include <Xpetra_CrsMatrixWrap.hpp>
52 #include <Xpetra_MatrixFactory.hpp>
58 #include "MueLu_PerfUtils.hpp"
59 #include "MueLu_RAPFactory.hpp"
63 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
67 #define SET_VALID_ENTRY(name) validParamList->setEntry(name, MasterList::getEntry(name))
69 #undef SET_VALID_ENTRY
74 return validParamList;
77 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
79 Input(coarseLevel,
"A");
80 Input(coarseLevel,
"Importer");
83 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
87 RCP<Matrix> originalAc = Get< RCP<Matrix> >(coarseLevel,
"A");
88 RCP<const Import> rebalanceImporter = Get< RCP<const Import> >(coarseLevel,
"Importer");
90 if (rebalanceImporter != Teuchos::null) {
99 if (pL.
get<
bool>(
"repartition: use subcommunicators") ==
true) {
100 GetOStream(
Runtime0) <<
"Replacing maps with a subcommunicator" << std::endl;
101 XpetraList.
set(
"Restrict Communicator",
true);
104 XpetraList.
set(
"Timer Label",
"MueLu::RebalanceAc-" +
Teuchos::toString(coarseLevel.GetLevelID()));
105 rebalancedAc = MatrixFactory::Build(originalAc, *rebalanceImporter, *rebalanceImporter, targetMap, targetMap,
rcp(&XpetraList,
false));
108 rebalancedAc->SetFixedBlockSize(originalAc->GetFixedBlockSize());
109 std::ostringstream oss; oss <<
"A_" << coarseLevel.GetLevelID(); rebalancedAc->setObjectLabel(oss.str());
111 Set(coarseLevel,
"A", rebalancedAc);
114 int oldRank = SetProcRankVerbose(rebalancedAc->getRowMap()->getComm()->getRank());
117 params->set(
"printLoadBalancingInfo",
true);
118 params->set(
"printCommInfo",
true);
121 SetProcRankVerbose(oldRank);
126 GetOStream(
Runtime1) <<
"No rebalancing" << std::endl;
127 Set(coarseLevel,
"A", originalAc);
130 if (rebalanceFacts_.begin() != rebalanceFacts_.end()) {
134 for (std::vector<
RCP<const FactoryBase> >::const_iterator it = rebalanceFacts_.begin(); it != rebalanceFacts_.end(); ++it) {
135 GetOStream(
Runtime0) <<
"RebalanceAc: call rebalance factory " << (*it).get() <<
": " << (*it)->description() << std::endl;
136 (*it)->CallBuild(coarseLevel);
142 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
149 rebalanceFacts_.push_back(factory);
154 #endif // MUELU_REBALANCEACFACTORY_DEF_HPP
T & get(const std::string &name, T def_value)
ParameterList & set(std::string const &name, T const &value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)
Timer to be used in factories. Similar to Monitor but with additional timers.
One-liner description of what is happening.
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
Print even more statistics.
void AddRebalanceFactory(const RCP< const FactoryBase > &factory)
Add rebalancing factory in the end of list of rebalancing factories in RebalanceAcFactory.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Class that holds all level-specific information.
#define SET_VALID_ENTRY(name)
Timer to be used in factories. Similar to SubMonitor but adds a timer level by level.
static std::string PrintMatrixInfo(const Matrix &A, const std::string &msgTag, RCP< const Teuchos::ParameterList > params=Teuchos::null)
void Build(Level &fineLevel, Level &coarseLevel) const
Build an object with this factory.
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
Description of what is happening (more verbose)
std::string toString(const T &t)