10 #ifndef PACKAGES_MUELU_SRC_REBALANCING_MUELU_CLONEREPARTITIONINTERFACE_DEF_HPP_
11 #define PACKAGES_MUELU_SRC_REBALANCING_MUELU_CLONEREPARTITIONINTERFACE_DEF_HPP_
13 #include <Xpetra_MultiVectorFactory.hpp>
24 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
31 return validParamList;
34 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
36 Input(currentLevel,
"A");
37 Input(currentLevel,
"Partition");
40 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
49 if (currentLevel.IsAvailable(
"number of partitions")) {
50 GetOStream(
Warnings0) <<
"Using user-provided \"number of partitions\", the performance is unknown" << std::endl;
59 decomposition = Get<RCP<GOVector> >(currentLevel,
"Partition");
63 GetOStream(
Warnings0) <<
"No repartitioning necessary: partitions were left unchanged by the repartitioner" << std::endl;
64 Set<RCP<const Import> >(currentLevel,
"Importer", Teuchos::null);
76 if (A->IsView(
"stridedMaps") &&
77 Teuchos::rcp_dynamic_cast<
const StridedMap>(A->getRowMap(
"stridedMaps")) != Teuchos::null) {
82 if (stridedBlock == -1)
83 blkSize = strMap->getFixedBlockSize();
85 std::vector<size_t> strInfo = strMap->getStridingData();
86 blkSize = strInfo[stridedBlock];
88 oldView = A->SwitchToView(oldView);
89 GetOStream(
Statistics1) <<
"CloneRepartitionInterface::Build():"
90 <<
" found blockdim=" << blkSize <<
" from strided maps." << std::endl;
92 GetOStream(
Statistics1) <<
"CloneRepartitionInterface::Build(): no striding information available. Use blockdim=" << blkSize <<
" (DofsPerNode)." << std::endl;
93 blkSize = A->GetFixedBlockSize();
97 size_t inLocalLength = decomposition->getLocalLength();
98 size_t outLocalLength = A->getRowMap()->getLocalNumElements();
101 size_t numLocalNodes = outLocalLength / blkSize;
104 if (numLocalNodes > 0) {
106 LocalOrdinal inBlkSize = Teuchos::as<LocalOrdinal>(inLocalLength / numLocalNodes);
109 for (
LO i = 0; i < Teuchos::as<LO>(numLocalNodes); i++) {
110 for (
LO j = 0; j < blkSize; j++) {
111 retDecompEntries[i * blkSize + j] = Teuchos::as<GO>(decompEntries[i * inBlkSize]);
115 Set(currentLevel,
"Partition", ret);
Important warning messages (one line)
Exception indicating invalid cast attempted.
MueLu::DefaultLocalOrdinal LocalOrdinal
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
Timer to be used in factories. Similar to Monitor but with additional timers.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
ParameterList & set(std::string const &name, T &&value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)
void DeclareInput(Level &level) const
Specifies the data that this class needs, and the factories that generate that data.
Print statistics that do not involve significant additional computation.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Class that holds all level-specific information.
static RCP< Vector > Build(const Teuchos::RCP< const Map > &map, bool zeroOut=true)
void print(std::ostream &out, const VerbLevel verbLevel=Default) const
Printing method.
Exception throws to report errors in the internal logical of the program.
void Build(Level &level) const
Build an object with this factory.