10 #ifndef MUELU_DIRECTSOLVER_DEF_HPP
11 #define MUELU_DIRECTSOLVER_DEF_HPP
21 #include "MueLu_Amesos2Smoother.hpp"
23 #include "MueLu_BelosSmoother.hpp"
24 #include "MueLu_StratimikosSmoother.hpp"
25 #include "MueLu_RefMaxwellSmoother.hpp"
29 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
48 #if defined(HAVE_MUELU_AMESOS2)
52 errorTpetra_ =
"Unable to construct Amesos2 direct solver";
53 else if (!
sTpetra_->constructionSuccessful()) {
66 #if defined(HAVE_MUELU_EPETRA) && defined(HAVE_MUELU_AMESOS)
69 sEpetra_ = GetAmesosSmoother<SC, LO, GO, NO>(
type_, paramList);
71 errorEpetra_ =
"Unable to construct Amesos direct solver";
72 else if (!
sEpetra_->constructionSuccessful()) {
82 #if defined(HAVE_MUELU_BELOS)
87 else if (!
sBelos_->constructionSuccessful()) {
98 #if defined(HAVE_MUELU_STRATIMIKOS) && defined(HAVE_MUELU_THYRA)
128 "Unable to construct any direct solver."
129 "Plase enable (TPETRA and AMESOS2) or (EPETRA and AMESOS) or (BELOS) or (STRATIMIKOS)");
132 "Could not enable any direct solver:\n"
133 << (
triedEpetra_ ?
"Epetra mode was disabled due to an error:\n" :
"")
135 << (
triedTpetra_ ?
"Tpetra mode was disabled due to an error:\n" :
"")
137 << (
triedBelos_ ?
"Belos was disabled due to an error:\n" :
"")
148 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
151 if (!sEpetra_.is_null()) sEpetra_->SetFactory(varName, factory);
152 if (!sTpetra_.is_null()) sTpetra_->SetFactory(varName, factory);
153 if (!sBelos_.is_null()) sBelos_->SetFactory(varName, factory);
154 if (!sStratimikos_.is_null()) sStratimikos_->SetFactory(varName, factory);
155 if (!sRefMaxwell_.is_null()) sRefMaxwell_->SetFactory(varName, factory);
158 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
160 if (!sBelos_.is_null())
162 else if (!sStratimikos_.is_null())
164 else if (!sRefMaxwell_.is_null())
173 s_ = (useTpetra ? sTpetra_ : sEpetra_);
176 #if not defined(HAVE_MUELU_AMESOS2)
178 "Error: running in Tpetra mode, but MueLu with Amesos2 was disabled during the configure stage.\n"
179 "Please make sure that:\n"
180 " - Amesos2 is enabled (Trilinos_ENABLE_Amesos2=ON),\n"
181 " - Amesos2 is available for MueLu to use (MueLu_ENABLE_Amesos2=ON)\n");
184 this->GetOStream(
Errors) <<
"Tpetra mode was disabled due to an error:\n"
185 << errorTpetra_ << std::endl;
189 #if not defined(HAVE_MUELU_AMESOS)
191 "Error: running in Epetra mode, but MueLu with Amesos was disabled during the configure stage.\n"
192 "Please make sure that:\n"
193 " - Amesos is enabled (you can do that with Trilinos_ENABLE_Amesos=ON),\n"
194 " - Amesos is available for MueLu to use (MueLu_ENABLE_Amesos=ON)\n");
197 this->GetOStream(
Errors) <<
"Epetra mode was disabled due to an error:\n"
198 << errorEpetra_ << std::endl;
202 "Direct solver for " << (useTpetra ?
"Tpetra" :
"Epetra") <<
" was not constructed");
206 s_->DeclareInput(currentLevel);
209 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
212 this->GetOStream(
Warnings0) <<
"MueLu::DirectSolver::Setup(): Setup() has already been called" << std::endl;
214 int oldRank = s_->SetProcRankVerbose(this->GetProcRankVerbose());
216 s_->Setup(currentLevel);
218 s_->SetProcRankVerbose(oldRank);
222 this->SetParameterList(s_->GetParameterList());
225 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
229 s_->Apply(X, B, InitialGuessIsZero);
232 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
238 if (!sEpetra_.is_null())
239 newSmoo->
sEpetra_ = sEpetra_->Copy();
240 if (!sTpetra_.is_null())
241 newSmoo->
sTpetra_ = sTpetra_->Copy();
242 if (!sBelos_.is_null())
243 newSmoo->
sBelos_ = sBelos_->Copy();
244 if (!sStratimikos_.is_null())
246 if (!sRefMaxwell_.is_null())
250 if (s_.get() == sBelos_.get())
252 else if (s_.get() == sStratimikos_.get())
254 else if (s_.get() == sRefMaxwell_.get())
256 else if (s_.get() == sTpetra_.get())
265 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
267 std::ostringstream out;
268 if (s_ != Teuchos::null) {
269 out << s_->description();
272 out <<
"{type = " << type_ <<
"}";
277 template <
class Scalar,
class LocalOrdinal,
class GlobalOrdinal,
class Node>
282 out0 <<
"Prec. type: " << type_ << std::endl;
285 out0 <<
"Parameter list: " << std::endl;
287 out << this->GetParameterList();
290 if (verbLevel &
Debug)
296 #endif // MUELU_DIRECTSOLVER_DEF_HPP
Important warning messages (one line)
Exception indicating invalid cast attempted.
void Apply(MultiVector &X, const MultiVector &B, bool InitialGuessIsZero=false) const
DirectSolver cannot be applied. Apply() always returns a RuntimeError exception.
void Setup(Level ¤tLevel)
DirectSolver cannot be turned into a smoother using Setup(). Setup() always returns a RuntimeError ex...
std::string errorStratimikos_
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
void DeclareInput(Level ¤tLevel) const
Input.
Class that encapsulates Belos smoothers.
Print additional debugging information.
std::string type_
amesos1/2-specific key phrase that denote smoother type
DirectSolver(const std::string &type="", const Teuchos::ParameterList ¶mList=Teuchos::ParameterList())
Constructor Note: only parameters shared by Amesos and Amesos2 should be used for type and paramList ...
Class that encapsulates direct solvers. Autoselection of AmesosSmoother or Amesos2Smoother according ...
RCP< SmootherPrototype > Copy() const
When this prototype is cloned using Copy(), the clone is an Amesos or an Amesos2 smoother.
void print(Teuchos::FancyOStream &out, const VerbLevel verbLevel=Default) const
virtual void SetParameterList(const Teuchos::ParameterList ¶mList)
Set parameters from a parameter list and return with default values.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
std::string description() const
Return a simple one-line description of this object.
Class that holds all level-specific information.
Class that encapsulates Amesos2 direct solvers.
RCP< SmootherPrototype > sBelos_
bool IsSetup() const
Get the state of a smoother prototype.
Xpetra::UnderlyingLib lib()
Class that encapsulates Operator smoothers.
#define MUELU_DESCRIBE
Helper macro for implementing Describable::describe() for BaseClass objects.
RCP< SmootherPrototype > sTpetra_
void SetFactory(const std::string &varName, const RCP< const FactoryBase > &factory)
Custom SetFactory.
std::string errorRefMaxwell_
RCP< SmootherPrototype > sEpetra_
Smoother.
RCP< SmootherPrototype > sRefMaxwell_
RCP< SmootherPrototype > s_
Print class parameters (more parameters, more verbose)
Exception throws to report errors in the internal logical of the program.
RCP< SmootherPrototype > sStratimikos_
virtual std::string description() const
Return a simple one-line description of this object.
std::string toString(const T &t)