10 #ifndef MUELU_REBALANCETRANSFERFACTORY_DEF_HPP
11 #define MUELU_REBALANCETRANSFERFACTORY_DEF_HPP
14 #include <Teuchos_Tuple.hpp>
17 #include "Xpetra_MultiVectorFactory.hpp"
21 #include <Xpetra_MapFactory.hpp>
32 #include "MueLu_PerfUtils.hpp"
36 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
39 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
42 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
46 #define SET_VALID_ENTRY(name) validParamList->setEntry(name, MasterList::getEntry(name))
48 SET_VALID_ENTRY(
"repartition: explicit via new copy rebalance P and R");
52 #undef SET_VALID_ENTRY
56 RCP<validatorType> typeValidator =
rcp(
new validatorType(Teuchos::tuple<std::string>(
"Interpolation",
"Restriction")));
57 validParamList->
set(
"type",
"Interpolation",
"Type of the transfer operator that need to be rebalanced (Interpolation or Restriction)", typeValidator);
60 validParamList->
set<
RCP<const FactoryBase> >(
"P", null,
"Factory of the prolongation operator that need to be rebalanced (only used if type=Interpolation)");
61 validParamList->
set<
RCP<const FactoryBase> >(
"R", null,
"Factory of the restriction operator that need to be rebalanced (only used if type=Restriction)");
62 validParamList->
set<
RCP<const FactoryBase> >(
"Nullspace", null,
"Factory of the nullspace that need to be rebalanced (only used if type=Interpolation)");
63 validParamList->
set<
RCP<const FactoryBase> >(
"Coordinates", null,
"Factory of the coordinates that need to be rebalanced (only used if type=Interpolation)");
64 validParamList->
set<
RCP<const FactoryBase> >(
"BlockNumber", null,
"Factory of the block ids that need to be rebalanced (only used if type=Interpolation)");
65 validParamList->
set<
RCP<const FactoryBase> >(
"Importer", null,
"Factory of the importer object used for the rebalancing");
66 validParamList->
set<
int>(
"write start", -1,
"First level at which coordinates should be written to file");
67 validParamList->
set<
int>(
"write end", -1,
"Last level at which coordinates should be written to file");
73 return validParamList;
76 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
80 if (pL.
get<std::string>(
"type") ==
"Interpolation") {
81 Input(coarseLevel,
"P");
82 if (pL.
get<
bool>(
"repartition: rebalance Nullspace"))
83 Input(coarseLevel,
"Nullspace");
85 Input(coarseLevel,
"Coordinates");
87 Input(coarseLevel,
"BlockNumber");
90 if (pL.
get<
bool>(
"transpose: use implicit") ==
false)
91 Input(coarseLevel,
"R");
94 Input(coarseLevel,
"Importer");
97 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
104 RCP<Matrix> originalP = Get<RCP<Matrix> >(coarseLevel,
"P");
107 if (originalP == Teuchos::null) {
108 Set(coarseLevel,
"P", originalP);
111 int implicit = !pL.
get<
bool>(
"repartition: rebalance P and R");
112 int reallyExplicit = pL.
get<
bool>(
"repartition: explicit via new copy rebalance P and R");
113 int writeStart = pL.
get<
int>(
"write start");
114 int writeEnd = pL.
get<
int>(
"write end");
116 if (writeStart == 0 && fineLevel.
GetLevelID() == 0 && writeStart <= writeEnd && IsAvailable(fineLevel,
"Coordinates")) {
117 std::string fileName =
"coordinates_level_0.m";
119 if (fineCoords != Teuchos::null)
123 if (writeStart == 0 && fineLevel.
GetLevelID() == 0 && writeStart <= writeEnd && IsAvailable(fineLevel,
"BlockNumber")) {
124 std::string fileName =
"BlockNumber_level_0.m";
126 if (fineBlockNumber != Teuchos::null)
138 params->
set(
"printLoadBalancingInfo",
true);
139 params->
set(
"printCommInfo",
true);
142 std::string transferType = pL.
get<std::string>(
"type");
143 if (transferType ==
"Interpolation") {
144 originalP = Get<RCP<Matrix> >(coarseLevel,
"P");
150 if (implicit || importer.
is_null()) {
151 GetOStream(
Runtime0) <<
"Using original prolongator" << std::endl;
152 Set(coarseLevel,
"P", originalP);
179 if (reallyExplicit) {
180 size_t totalMaxPerRow = 0;
181 ArrayRCP<size_t> nnzPerRow(originalP->getRowMap()->getLocalNumElements(), 0);
182 for (
size_t i = 0; i < originalP->getRowMap()->getLocalNumElements(); ++i) {
183 nnzPerRow[i] = originalP->getNumEntriesInLocalRow(i);
184 if (nnzPerRow[i] > totalMaxPerRow) totalMaxPerRow = nnzPerRow[i];
187 rebalancedP = MatrixFactory::Build(originalP->getRowMap(), totalMaxPerRow);
190 RCP<Import> trivialImporter = ImportFactory::Build(originalP->getRowMap(), originalP->getRowMap());
191 SubFactoryMonitor m2(*
this,
"Rebalancing prolongator -- import only", coarseLevel);
192 rebalancedP->doImport(*originalP, *trivialImporter,
Xpetra::INSERT);
194 rebalancedP->fillComplete(importer->getTargetMap(), originalP->getRangeMap());
197 rebalancedP = originalP;
202 TEUCHOS_TEST_FOR_EXCEPTION(rebalancedP2 == Teuchos::null, std::runtime_error,
"Xpetra::CrsMatrixWrap doesn't have a CrsMatrix");
205 SubFactoryMonitor subM(*
this,
"Rebalancing prolongator -- fast map replacement", coarseLevel);
210 newImporter = ImportFactory::Build(importer->getTargetMap(), rebalancedP->getColMap());
212 rebalancedP2->replaceDomainMapAndImporter(importer->getTargetMap(), newImporter);
222 std::ostringstream oss;
223 oss <<
"P_" << coarseLevel.GetLevelID();
224 rebalancedP->setObjectLabel(oss.str());
226 Set(coarseLevel,
"P", rebalancedP);
234 if (IsAvailable(coarseLevel,
"Nullspace"))
235 Set(coarseLevel,
"Nullspace", Get<
RCP<MultiVector> >(coarseLevel,
"Nullspace"));
238 if (IsAvailable(coarseLevel,
"Coordinates"))
239 Set(coarseLevel,
"Coordinates", Get<
RCP<xdMV> >(coarseLevel,
"Coordinates"));
242 if (IsAvailable(coarseLevel,
"BlockNumber"))
250 IsAvailable(coarseLevel,
"Coordinates")) {
251 RCP<xdMV> coords = Get<RCP<xdMV> >(coarseLevel,
"Coordinates");
256 LO nodeNumElts = coords->getMap()->getLocalNumElements();
259 LO myBlkSize = 0, blkSize = 0;
261 myBlkSize = importer->getSourceMap()->getLocalNumElements() / nodeNumElts;
262 MueLu_maxAll(coords->getMap()->getComm(), myBlkSize, blkSize);
266 coordImporter = importer;
273 GO indexBase = origMap->getIndexBase();
276 LO numEntries = OEntries.
size() / blkSize;
278 for (LO i = 0; i < numEntries; i++)
279 Entries[i] = (OEntries[i * blkSize] - indexBase) / blkSize + indexBase;
281 RCP<const Map> targetMap = MapFactory::Build(origMap->lib(), origMap->getGlobalNumElements(), Entries(), indexBase, origMap->getComm());
282 coordImporter = ImportFactory::Build(origMap, targetMap);
286 permutedCoords->doImport(*coords, *coordImporter,
Xpetra::INSERT);
288 if (pL.
isParameter(
"repartition: use subcommunicators") ==
true && pL.
get<
bool>(
"repartition: use subcommunicators") ==
true)
289 permutedCoords->replaceMap(permutedCoords->getMap()->removeEmptyProcesses());
291 if (permutedCoords->getMap() == Teuchos::null)
292 permutedCoords = Teuchos::null;
294 Set(coarseLevel,
"Coordinates", permutedCoords);
296 std::string fileName =
"rebalanced_coordinates_level_" +
toString(coarseLevel.GetLevelID()) +
".m";
297 if (writeStart <= coarseLevel.GetLevelID() && coarseLevel.GetLevelID() <= writeEnd && permutedCoords->getMap() != Teuchos::null)
303 IsAvailable(coarseLevel,
"BlockNumber")) {
309 RCP<LocalOrdinalVector> permutedBlockNumber = LocalOrdinalVectorFactory::Build(importer->getTargetMap(),
false);
310 permutedBlockNumber->doImport(*BlockNumber, *importer,
Xpetra::INSERT);
312 if (pL.
isParameter(
"repartition: use subcommunicators") ==
true && pL.
get<
bool>(
"repartition: use subcommunicators") ==
true)
313 permutedBlockNumber->replaceMap(permutedBlockNumber->getMap()->removeEmptyProcesses());
315 if (permutedBlockNumber->getMap() == Teuchos::null)
316 permutedBlockNumber = Teuchos::null;
318 Set(coarseLevel,
"BlockNumber", permutedBlockNumber);
320 std::string fileName =
"rebalanced_BlockNumber_level_" +
toString(coarseLevel.GetLevelID()) +
".m";
321 if (writeStart <= coarseLevel.GetLevelID() && coarseLevel.GetLevelID() <= writeEnd && permutedBlockNumber->getMap() != Teuchos::null)
325 if (IsAvailable(coarseLevel,
"Nullspace")) {
326 RCP<MultiVector> nullspace = Get<RCP<MultiVector> >(coarseLevel,
"Nullspace");
331 RCP<MultiVector> permutedNullspace = MultiVectorFactory::Build(importer->getTargetMap(), nullspace->getNumVectors());
332 permutedNullspace->doImport(*nullspace, *importer,
Xpetra::INSERT);
334 if (pL.
get<
bool>(
"repartition: use subcommunicators") ==
true)
335 permutedNullspace->replaceMap(permutedNullspace->getMap()->removeEmptyProcesses());
337 if (permutedNullspace->getMap() == Teuchos::null)
338 permutedNullspace = Teuchos::null;
340 Set(coarseLevel,
"Nullspace", permutedNullspace);
344 if (pL.
get<
bool>(
"transpose: use implicit") ==
false) {
345 RCP<Matrix> originalR = Get<RCP<Matrix> >(coarseLevel,
"R");
349 if (implicit || importer.
is_null()) {
350 GetOStream(
Runtime0) <<
"Using original restrictor" << std::endl;
351 Set(coarseLevel,
"R", originalR);
356 SubFactoryMonitor subM(*
this,
"Rebalancing restriction -- fusedImport", coarseLevel);
360 listLabel.
set(
"Timer Label",
"MueLu::RebalanceR-" +
Teuchos::toString(coarseLevel.GetLevelID()));
361 rebalancedR = MatrixFactory::Build(originalR, *importer, dummy, importer->getTargetMap(),
Teuchos::rcp(&listLabel,
false));
364 std::ostringstream oss;
365 oss <<
"R_" << coarseLevel.GetLevelID();
366 rebalancedR->setObjectLabel(oss.str());
368 Set(coarseLevel,
"R", rebalancedR);
386 #endif // MUELU_REBALANCETRANSFERFACTORY_DEF_HPP
Exception indicating invalid cast attempted.
T & Get(const std::string &ename, const FactoryBase *factory=NoFactory::get())
Get data without decrementing associated storage counter (i.e., read-only access). Usage: Level->Get< RCP<Matrix> >("A", factory) if factory == NULL => use default factory.
std::string toString(const T &what)
Little helper function to convert non-string types to strings.
#define MueLu_maxAll(rcpComm, in, out)
T & get(const std::string &name, T def_value)
Timer to be used in factories. Similar to Monitor but with additional timers.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
One-liner description of what is happening.
ParameterList & set(std::string const &name, T &&value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)
static const NoFactory * get()
virtual ~RebalanceTransferFactory()
Destructor.
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
Print even more statistics.
bool isParameter(const std::string &name) const
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Specifies the data that this class needs, and the factories that generate that data.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Class that holds all level-specific information.
Timer to be used in factories. Similar to SubMonitor but adds a timer level by level.
void Build(Level &fineLevel, Level &coarseLevel) const
Build an object with this factory.
#define SET_VALID_ENTRY(name)
static std::string PrintMatrixInfo(const Matrix &A, const std::string &msgTag, RCP< const Teuchos::ParameterList > params=Teuchos::null)
RebalanceTransferFactory()
Constructor.
int GetLevelID() const
Return level number.
std::string toString(const T &t)