46 #ifndef PACKAGES_MUELU_SRC_REBALANCING_MUELU_CLONEREPARTITIONINTERFACE_DEF_HPP_
47 #define PACKAGES_MUELU_SRC_REBALANCING_MUELU_CLONEREPARTITIONINTERFACE_DEF_HPP_
57 #include "MueLu_Utilities.hpp"
62 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
69 return validParamList;
73 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
75 Input(currentLevel,
"A");
76 Input(currentLevel,
"Partition");
79 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
88 if (currentLevel.IsAvailable(
"number of partitions")) {
89 GetOStream(
Warnings0) <<
"Using user-provided \"number of partitions\", the performance is unknown" << std::endl;
99 decomposition = Get<RCP<GOVector> >(currentLevel,
"Partition");
103 GetOStream(
Warnings0) <<
"No repartitioning necessary: partitions were left unchanged by the repartitioner" << std::endl;
104 Set<RCP<const Import> >(currentLevel,
"Importer", Teuchos::null);
110 ArrayRCP<GO> retDecompEntries = ret->getDataNonConst(0);
113 LocalOrdinal blkSize = 1;
116 if(A->IsView(
"stridedMaps") &&
117 Teuchos::rcp_dynamic_cast<const StridedMap>(A->getRowMap(
"stridedMaps")) != Teuchos::null) {
121 LocalOrdinal stridedBlock = strMap->getStridedBlockId();
122 if (stridedBlock == -1)
123 blkSize = strMap->getFixedBlockSize();
125 std::vector<size_t> strInfo = strMap->getStridingData();
126 blkSize = strInfo[stridedBlock];
128 oldView = A->SwitchToView(oldView);
129 GetOStream(
Statistics1) <<
"CloneRepartitionInterface::Build():" <<
" found blockdim=" << blkSize <<
" from strided maps."<< std::endl;
131 GetOStream(
Statistics1) <<
"CloneRepartitionInterface::Build(): no striding information available. Use blockdim=" << blkSize <<
" (DofsPerNode)." << std::endl;
132 blkSize = A->GetFixedBlockSize();
136 size_t inLocalLength = decomposition->getLocalLength();
137 size_t outLocalLength = A->getRowMap()->getNodeNumElements();
140 size_t numLocalNodes = outLocalLength / blkSize;
143 if (numLocalNodes > 0) {
145 LocalOrdinal inBlkSize = Teuchos::as<LocalOrdinal>(inLocalLength / numLocalNodes);
148 for(
LO i = 0; i<Teuchos::as<LO>(numLocalNodes); i++) {
149 for(
LO j = 0; j < blkSize; j++) {
150 retDecompEntries[i*blkSize + j] = Teuchos::as<GO>(decompEntries[i*inBlkSize]);
154 Set(currentLevel,
"Partition", ret);