46 #ifndef MUELU_USERPFACTORY_DEF_HPP
47 #define MUELU_USERPFACTORY_DEF_HPP
54 #include "MueLu_PerfUtils.hpp"
55 #include "MueLu_UserPFactory.hpp"
56 #include "MueLu_Utilities.hpp"
60 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
66 validParamList->
set< std::string > (
"matrixFileName",
"",
"File with matrix data");
67 validParamList->
set< std::string > (
"mapFileName",
"",
"File with coarse map data");
69 return validParamList;
72 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
74 Input(fineLevel,
"A");
75 Input(fineLevel,
"Nullspace");
78 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
80 return BuildP(fineLevel, coarseLevel);
83 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
87 RCP<Matrix> A = Get< RCP<Matrix> > (fineLevel,
"A");
88 RCP<MultiVector> fineNullspace = Get< RCP<MultiVector> > (fineLevel,
"Nullspace");
94 std::string mapFile = pL.get<std::string>(
"mapFileName");
97 Set(coarseLevel,
"CoarseMap", coarseMap);
99 std::string matrixFile = pL.get<std::string>(
"matrixFileName");
102 Set(coarseLevel,
"P", P);
107 Set(coarseLevel,
"P", P);
110 RCP<MultiVector> coarseNullspace = MultiVectorFactory::Build(coarseMap, fineNullspace->getNumVectors());
112 Set(coarseLevel,
"Nullspace", coarseNullspace);
115 size_t n = Teuchos::as<size_t>(sqrt(coarseMap->getGlobalNumElements()));
119 ArrayRCP<Scalar> x = coarseCoords->getDataNonConst(0), y = coarseCoords->getDataNonConst(1);
120 for (
size_t LID = 0; LID < coarseMap->getNodeNumElements(); ++LID) {
121 GlobalOrdinal GID = coarseMap->getGlobalElement(LID) - coarseMap->getIndexBase();
122 GlobalOrdinal i = GID % n, j = GID/n;
126 Set(coarseLevel,
"Coordinates", coarseCoords);
130 params->
set(
"printLoadBalancingInfo",
true);
138 #define MUELU_USERPFACTORY_SHORT
139 #endif // MUELU_USERPFACTORY_DEF_HPP
void Build(Level &fineLevel, Level &coarseLevel) const
Build an object with this factory.
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.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
void BuildP(Level &fineLevel, Level &coarseLevel) const
Abstract Build method.
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Class that holds all level-specific information.
static RCP< const Map > ReadMap(const std::string &fileName, Xpetra::UnderlyingLib lib, const RCP< const Teuchos::Comm< int > > &comm)
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
static std::string PrintMatrixInfo(const Matrix &A, const std::string &msgTag, RCP< const Teuchos::ParameterList > params=Teuchos::null)
static void Multiply(const Matrix &A, bool transposeA, const Matrix &B, bool transposeB, Matrix &C, bool call_FillComplete_on_result=true, bool doOptimizeStorage=true, const std::string &label=std::string(), const RCP< ParameterList > ¶ms=null)
static Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Read(const std::string &fileName, Xpetra::UnderlyingLib lib, const RCP< const Teuchos::Comm< int > > &comm, bool binary=false)
Exception throws to report errors in the internal logical of the program.