43#ifndef IFPACK2_DETAILS_ONELEVELFACTORY_DEF_HPP
44#define IFPACK2_DETAILS_ONELEVELFACTORY_DEF_HPP
46#include "Ifpack2_Factory.hpp"
48#include "Ifpack2_Chebyshev.hpp"
49#include "Ifpack2_Details_DenseSolver.hpp"
50#include "Ifpack2_Diagonal.hpp"
51#include "Ifpack2_IdentitySolver.hpp"
52#include "Ifpack2_ILUT.hpp"
53#include "Ifpack2_Relaxation.hpp"
54#include "Ifpack2_RILUK.hpp"
55#include "Ifpack2_Experimental_RBILUK.hpp"
56#include "Ifpack2_BlockRelaxation.hpp"
57#include "Ifpack2_BandedContainer.hpp"
58#include "Ifpack2_DenseContainer.hpp"
59#include "Ifpack2_SparseContainer.hpp"
60#include "Ifpack2_TriDiContainer.hpp"
61#include "Ifpack2_LocalSparseTriangularSolver.hpp"
62#include "Ifpack2_Hiptmair.hpp"
64#ifdef HAVE_IFPACK2_SHYLU_NODEFASTILU
65#include "Ifpack2_Details_Fic.hpp"
66#include "Ifpack2_Details_Fildl.hpp"
67#include "Ifpack2_Details_Filu.hpp"
70#ifdef HAVE_IFPACK2_AMESOS2
71# include "Ifpack2_Details_Amesos2Wrapper.hpp"
74#ifdef HAVE_IFPACK2_HYPRE
75# include "Ifpack2_Hypre.hpp"
82template<
class MatrixType>
83Teuchos::RCP<typename OneLevelFactory<MatrixType>::prec_type>
85 const Teuchos::RCP<const row_matrix_type>&
matrix)
const
98 prec =
rcp (new ::Ifpack2::Chebyshev<row_matrix_type> (
matrix));
104#ifdef HAVE_IFPACK2_AMESOS2
108 true, std::invalid_argument,
"Ifpack2::Details::OneLevelFactory: "
109 "You may not ask for the preconditioner \"AMESOS2\" unless "
110 "you have built Trilinos with the Amesos2 package enabled.");
129 #ifdef HAVE_IFPACK2_SHYLU_NODEFASTILU
140 throw std::invalid_argument(
"The Ifpack2 FastIC, FastILU and FastILDL preconditioners require the FastILU subpackage of ShyLU to be enabled\n"
141 "To enable FastILU, set the CMake option Trilinos_ENABLE_ShyLU_NodeFastILU=ON");
147 (
true, std::invalid_argument,
"The \"KRYLOV\" preconditioner option has "
148 "been deprecated and removed. If you want a Krylov solver, use the "
161 Teuchos::ParameterList
params;
162 params.set (
"relaxation: container",
"Dense");
174#ifdef HAVE_IFPACK2_AMESOS2
176 Teuchos::ParameterList
params;
177 params.set (
"relaxation: container",
"SparseAmesos2");
181 (
true, std::invalid_argument,
"Ifpack2::Details::OneLevelFactory: "
182 "\"SPARSE BLOCK RELAXATION\" requires building Trilinos with Amesos2 enabled.");
192 Teuchos::ParameterList
params;
193 params.set (
"relaxation: container",
"TriDi");
200 Teuchos::ParameterList
params;
201 params.set (
"relaxation: container",
"Banded");
208 else if (
precTypeUpper ==
"LOCAL SPARSE TRIANGULAR SOLVER" ||
219#ifdef HAVE_IFPACK2_HYPRE
226 true, std::invalid_argument,
"Ifpack2::Details::OneLevelFactory::create: "
227 "Invalid preconditioner type \"" <<
precType <<
"\".");
231 prec.is_null (), std::logic_error,
"Ifpack2::Details::OneLevelFactory::"
232 "create: Return value is null right before return. This should never "
233 "happen. Please report this bug to the Ifpack2 developers.");
237template<
class MatrixType>
244 "CHEBYSHEV",
"DENSE",
"LAPACK",
245#ifdef HAVE_IFPACK2_AMESOS2
248 "DIAGONAL",
"ILUT",
"RELAXATION",
"RILUK",
"RBILUK",
249#ifdef HAVE_IFPACK2_SHYLU_NODEFASTILU
250 "FAST_IC",
"FAST_ILU",
"FAST_ILDL",
252 "BLOCK_RELAXATION",
"BLOCK RELAXATION",
"BLOCKRELAXATION",
"DENSE_BLOCK_RELAXATION",
"DENSE BLOCK RELAXATION",
"DENSEBLOCKRELAXATION",
253#ifdef HAVE_IFPACK2_AMESOS2
254 "SPARSE_BLOCK_RELAXATION",
"SPARSE BLOCK RELAXATION",
"SPARSEBLOCKRELAXATION",
256 #ifdef HAVE_IFPACK2_HYPRE
259 "TRIDI_RELAXATION",
"TRIDI RELAXATION",
"TRIDIRELAXATION",
"TRIDIAGONAL_RELAXATION",
"TRIDIAGONAL RELAXATION",
"TRIDIAGONALRELAXATION",
260 "BANDED_RELAXATION",
"BANDED RELAXATION",
"BANDEDRELAXATION",
261 "IDENTITY",
"IDENTITY_SOLVER",
262 "LOCAL SPARSE TRIANGULAR SOLVER",
"LOCAL_SPARSE_TRIANGULAR_SOLVER",
"LOCALSPARSETRIANGULARSOLVER",
"SPARSE TRIANGULAR SOLVER",
"SPARSE_TRIANGULAR_SOLVER",
"SPARSETRIANGULARSOLVER",
267 auto it = std::find(std::begin(supportedNames), std::end(supportedNames), precTypeUpper);
268 return it != std::end(supportedNames);
274#define IFPACK2_DETAILS_ONELEVELFACTORY_INSTANT(S,LO,GO,N) \
275 template class Ifpack2::Details::OneLevelFactory< Tpetra::RowMatrix<S, LO, GO, N> >;
File for utility functions.
Ifpack2's implementation of Trilinos::Details::LinearSolver interface.
Definition Ifpack2_Details_LinearSolver_decl.hpp:110
void setParameters(const Teuchos::RCP< Teuchos::ParameterList > ¶ms)
Set the solver's parameters.
Definition Ifpack2_Details_LinearSolver_def.hpp:152
"Factory" for creating single-level preconditioners.
Definition Ifpack2_Details_OneLevelFactory_decl.hpp:124
Teuchos::RCP< prec_type > create(const std::string &precType, const Teuchos::RCP< const row_matrix_type > &matrix) const
Create an instance of Preconditioner given the string name of the preconditioner type.
Definition Ifpack2_Details_OneLevelFactory_def.hpp:84
ILU(k) factorization of a given Tpetra::BlockCrsMatrix.
Definition Ifpack2_Experimental_RBILUK_decl.hpp:130
Ifpack2 implementation details.
Preconditioners and smoothers for Tpetra sparse matrices.
Definition Ifpack2_AdditiveSchwarz_decl.hpp:73