MueLu
Version of the Day
|
The main MueLu adapters (interfaces) More...
Classes | |
class | MueLu::ShiftedLaplacian< Scalar, LocalOrdinal, GlobalOrdinal, Node > |
Shifted Laplacian Helmholtz solver. More... | |
class | MueLu::RefMaxwell< Scalar, LocalOrdinal, GlobalOrdinal, Node > |
Preconditioner (wrapped as a Xpetra::Operator) for Maxwell's equations in curl-curl form. More... | |
class | MueLu::AMGXOperator< Scalar, LocalOrdinal, GlobalOrdinal, Node > |
Adapter for AmgX library from Nvidia. More... | |
Functions | |
Teuchos::RCP < MueLu::EpetraOperator > | MueLu::CreateEpetraPreconditioner (const Teuchos::RCP< Epetra_CrsMatrix > &inA, Teuchos::ParameterList ¶mListIn) |
Helper function to create a MueLu preconditioner that can be used by Epetra.Given a EpetraCrs_Matrix, this function returns a constructed MueLu preconditioner. More... | |
Teuchos::RCP < MueLu::EpetraOperator > | MueLu::CreateEpetraPreconditioner (const Teuchos::RCP< Epetra_CrsMatrix > &A, const std::string &xmlFileName) |
Helper function to create a MueLu preconditioner that can be used by Epetra.Given a Epetra_CrsMatrix, this function returns a constructed MueLu preconditioner. More... | |
Teuchos::RCP < MueLu::EpetraOperator > | MueLu::CreateEpetraPreconditioner (const Teuchos::RCP< Epetra_CrsMatrix > &A) |
Helper function to create a MueLu preconditioner that can be used by Epetra.Given a Epetra_CrsMatrix, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP < MueLu::TpetraOperator < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | MueLu::CreateTpetraPreconditioner (const Teuchos::RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &inA, Teuchos::ParameterList &inParamList) |
Helper function to create a MueLu or AMGX preconditioner that can be used by Tpetra.Given a Tpetra::Operator, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP < MueLu::TpetraOperator < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | MueLu::CreateTpetraPreconditioner (const Teuchos::RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &inA, const std::string &xmlFileName) |
Helper function to create a MueLu preconditioner that can be used by Tpetra.Given a Tpetra::Operator, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP < MueLu::TpetraOperator < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | MueLu::CreateTpetraPreconditioner (const Teuchos::RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &inA) |
Helper function to create a MueLu preconditioner that can be used by Tpetra.Given a Tpetra::Operator, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
void | MueLu::ReuseTpetraPreconditioner (const Teuchos::RCP< Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &inA, MueLu::TpetraOperator< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Op) |
Helper function to reuse an existing MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP< MueLu::Hierarchy < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | MueLu::CreateXpetraPreconditioner (Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > op, const Teuchos::ParameterList &inParamList) |
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP< MueLu::Hierarchy < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | MueLu::CreateXpetraPreconditioner (Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > op, const std::string &xmlFileName) |
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP< MueLu::Hierarchy < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | MueLu::CreateXpetraPreconditioner (Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > op) |
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix, this function returns a constructed MueLu preconditioner. More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
void | MueLu::ReuseXpetraPreconditioner (const Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &A, Teuchos::RCP< MueLu::Hierarchy< Scalar, LocalOrdinal, GlobalOrdinal, Node >> &H) |
Helper function to reuse an existing MueLu preconditioner. More... | |
The main MueLu adapters (interfaces)
Most applications will use these interfaces to create preconditioners with MueLu. Options are passed to the adapters via Teuchos::ParameterLists or XML input files. Applications can optionally provide nullspace vectors (if known) and/or mesh coordinate vectors (for parallel rebalancing and auxiliary dropping). Adapters are available for Epetra and Tpetra, and return Epetra_Operators and Tpetra::Operators, respectively.
Teuchos::RCP< MueLu::EpetraOperator > MueLu::CreateEpetraPreconditioner | ( | const Teuchos::RCP< Epetra_CrsMatrix > & | inA, |
Teuchos::ParameterList & | paramListIn | ||
) |
Helper function to create a MueLu preconditioner that can be used by Epetra.Given a EpetraCrs_Matrix, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
[in] | paramListIn | Parameter list |
Definition at line 34 of file MueLu_CreateEpetraPreconditioner.cpp.
Teuchos::RCP< MueLu::EpetraOperator > MueLu::CreateEpetraPreconditioner | ( | const Teuchos::RCP< Epetra_CrsMatrix > & | A, |
const std::string & | xmlFileName | ||
) |
Helper function to create a MueLu preconditioner that can be used by Epetra.Given a Epetra_CrsMatrix, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
[in] | xmlFileName | XML file containing MueLu options. |
[in] | inA | Matrix |
Definition at line 87 of file MueLu_CreateEpetraPreconditioner.cpp.
Teuchos::RCP<MueLu::EpetraOperator> MueLu::CreateEpetraPreconditioner | ( | const Teuchos::RCP< Epetra_CrsMatrix > & | A | ) |
Helper function to create a MueLu preconditioner that can be used by Epetra.Given a Epetra_CrsMatrix, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix. |
Definition at line 103 of file MueLu_CreateEpetraPreconditioner.cpp.
Teuchos::RCP<MueLu::TpetraOperator<Scalar,LocalOrdinal,GlobalOrdinal,Node> > MueLu::CreateTpetraPreconditioner | ( | const Teuchos::RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | inA, |
Teuchos::ParameterList & | inParamList | ||
) |
Helper function to create a MueLu or AMGX preconditioner that can be used by Tpetra.Given a Tpetra::Operator, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
[in] | inParamList | Parameter list |
Definition at line 47 of file MueLu_CreateTpetraPreconditioner.hpp.
Teuchos::RCP<MueLu::TpetraOperator<Scalar,LocalOrdinal,GlobalOrdinal,Node> > MueLu::CreateTpetraPreconditioner | ( | const Teuchos::RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | inA, |
const std::string & | xmlFileName | ||
) |
Helper function to create a MueLu preconditioner that can be used by Tpetra.Given a Tpetra::Operator, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
[in] | xmlFileName | XML file containing MueLu options |
Definition at line 124 of file MueLu_CreateTpetraPreconditioner.hpp.
Teuchos::RCP<MueLu::TpetraOperator<Scalar,LocalOrdinal,GlobalOrdinal,Node> > MueLu::CreateTpetraPreconditioner | ( | const Teuchos::RCP< Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | inA | ) |
Helper function to create a MueLu preconditioner that can be used by Tpetra.Given a Tpetra::Operator, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
Definition at line 143 of file MueLu_CreateTpetraPreconditioner.hpp.
void MueLu::ReuseTpetraPreconditioner | ( | const Teuchos::RCP< Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | inA, |
MueLu::TpetraOperator< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | Op | ||
) |
Helper function to reuse an existing MueLu preconditioner.
[in] | inA | Matrix |
[in] | Op | Existing MueLu preconditioner. |
Definition at line 158 of file MueLu_CreateTpetraPreconditioner.hpp.
Teuchos::RCP<MueLu::Hierarchy<Scalar,LocalOrdinal,GlobalOrdinal,Node> > MueLu::CreateXpetraPreconditioner | ( | Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | op, |
const Teuchos::ParameterList & | inParamList | ||
) |
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
[in] | inParamList | Parameter list |
Definition at line 42 of file MueLu_CreateXpetraPreconditioner.hpp.
Teuchos::RCP<MueLu::Hierarchy<Scalar,LocalOrdinal,GlobalOrdinal,Node> > MueLu::CreateXpetraPreconditioner | ( | Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | op, |
const std::string & | xmlFileName | ||
) |
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
[in] | xmlFileName | std::string |
Definition at line 127 of file MueLu_CreateXpetraPreconditioner.hpp.
Teuchos::RCP<MueLu::Hierarchy<Scalar,LocalOrdinal,GlobalOrdinal,Node> > MueLu::CreateXpetraPreconditioner | ( | Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | op | ) |
Helper function to create a MueLu preconditioner that can be used by Xpetra.Given an Xpetra::Matrix, this function returns a constructed MueLu preconditioner.
[in] | inA | Matrix |
Definition at line 143 of file MueLu_CreateXpetraPreconditioner.hpp.
void MueLu::ReuseXpetraPreconditioner | ( | const Teuchos::RCP< Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | A, |
Teuchos::RCP< MueLu::Hierarchy< Scalar, LocalOrdinal, GlobalOrdinal, Node >> & | H | ||
) |
Helper function to reuse an existing MueLu preconditioner.
[in] | inA | Matrix |
[in] | Op | Existing MueLu preconditioner. |
Definition at line 156 of file MueLu_CreateXpetraPreconditioner.hpp.