52 #ifndef IFPACK2_ADDITIVESCHWARZ_DECL_HPP 53 #define IFPACK2_ADDITIVESCHWARZ_DECL_HPP 55 #include "Ifpack2_ConfigDefs.hpp" 59 #include "Tpetra_Map.hpp" 60 #include "Tpetra_MultiVector.hpp" 61 #include "Tpetra_RowMatrix.hpp" 62 #include <type_traits> 66 template<
class MV,
class OP,
class NormType>
275 template<
class MatrixType,
276 class LocalInverseType =
278 typename MatrixType::local_ordinal_type,
279 typename MatrixType::global_ordinal_type,
280 typename MatrixType::node_type> >
283 typename MatrixType::local_ordinal_type,
284 typename MatrixType::global_ordinal_type,
285 typename MatrixType::node_type>,
287 typename MatrixType::local_ordinal_type,
288 typename MatrixType::global_ordinal_type,
289 typename MatrixType::node_type> >,
291 typename MatrixType::local_ordinal_type,
292 typename MatrixType::global_ordinal_type,
293 typename MatrixType::node_type> >
296 static_assert(std::is_same<LocalInverseType,
298 typename MatrixType::local_ordinal_type,
299 typename MatrixType::global_ordinal_type,
300 typename MatrixType::node_type> >::value,
"Ifpack2::AdditiveSchwarz: You are not allowed to use nondefault values for the LocalInverseType template parameter. Please stop specifying this explicitly. The default template parameter is perfectly fine.");
302 static_assert(std::is_same<MatrixType,
303 Tpetra::RowMatrix<
typename MatrixType::scalar_type,
304 typename MatrixType::local_ordinal_type,
305 typename MatrixType::global_ordinal_type,
306 typename MatrixType::node_type> >::value,
"Ifpack2::AdditiveSchwarz: Please use MatrixType = Tpetra::RowMatrix instead of MatrixType = Tpetra::CrsMatrix. Don't worry, AdditiveSchwarz's constructor can take either type of matrix; it does a dynamic cast if necessary inside. Restricting the set of allowed types here will improve build times and reduce library and executable sizes.");
324 typedef typename Teuchos::ScalarTraits<scalar_type>::magnitudeType
magnitude_type;
351 const int overlapLevel);
361 virtual Teuchos::RCP<const Tpetra::Map<local_ordinal_type,global_ordinal_type,node_type> >
getDomainMap()
const;
364 virtual Teuchos::RCP<const Tpetra::Map<local_ordinal_type,global_ordinal_type,node_type> >
getRangeMap()
const;
368 apply (
const Tpetra::MultiVector<scalar_type,local_ordinal_type,global_ordinal_type,node_type> &X,
369 Tpetra::MultiVector<scalar_type,local_ordinal_type,global_ordinal_type,node_type> &Y,
370 Teuchos::ETransp mode = Teuchos::NO_TRANS,
371 scalar_type alpha = Teuchos::ScalarTraits<scalar_type>::one(),
372 scalar_type beta = Teuchos::ScalarTraits<scalar_type>::zero())
const;
445 setMatrix (
const Teuchos::RCP<const row_matrix_type>& A);
449 virtual Teuchos::RCP<const row_matrix_type>
getMatrix()
const;
620 virtual void setParameters (
const Teuchos::ParameterList& plist);
691 void describe(Teuchos::FancyOStream &out,
const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default)
const;
696 virtual std::ostream&
print(std::ostream& os)
const;
728 typedef Trilinos::Details::LinearSolver<MV, OP, typename MV::mag_type> inner_solver_type;
737 void localApply(MV &OverlappingX, MV &OverlappingY)
const;
741 bool hasInnerPrecName ()
const;
745 std::string innerPrecName ()
const;
749 void removeInnerPrecName ();
756 std::pair<Teuchos::ParameterList, bool> innerPrecParams ()
const;
760 void removeInnerPrecParams ();
763 static std::string defaultInnerPrecName ();
768 Teuchos::RCP<const row_matrix_type> Matrix_;
773 Teuchos::RCP<row_matrix_type> OverlappingMatrix_;
776 Teuchos::RCP<row_matrix_type> ReorderedLocalizedMatrix_;
779 Teuchos::RCP<row_matrix_type> innerMatrix_;
795 Teuchos::ParameterList List_;
798 mutable Teuchos::RCP<const Teuchos::ParameterList> validParams_;
801 Tpetra::CombineMode CombineMode_;
805 std::string ReorderingAlgorithm_;
807 bool FilterSingletons_;
809 Teuchos::RCP<row_matrix_type> SingletonMatrix_;
813 bool ZeroStartingSolution_;
820 mutable int NumApply_;
822 double InitializeTime_;
826 mutable double ApplyTime_;
828 double InitializeFlops_;
830 double ComputeFlops_;
832 mutable double ApplyFlops_;
834 Teuchos::RCP<inner_solver_type> Inverse_;
836 Teuchos::RCP<const map_type> localMap_;
844 mutable Teuchos::RCP<const import_type> DistributedImporter_;
849 #endif // IFPACK2_ADDITIVESCHWARZ_DECL_HPP virtual Teuchos::RCP< const Tpetra::Map< local_ordinal_type, global_ordinal_type, node_type > > getDomainMap() const
The domain Map of this operator.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:280
Mix-in interface for preconditioners that can change their matrix after construction.
Definition: Ifpack2_Details_CanChangeMatrix.hpp:93
void setParameterList(const Teuchos::RCP< Teuchos::ParameterList > &plist)
Set the preconditioner's parameters.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:855
virtual void compute()
Computes all (coefficient) data necessary to apply the preconditioner.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1157
Declaration of interface for nested preconditioners.
virtual double getInitializeTime() const
Returns the time spent in initialize().
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1234
virtual double getComputeTime() const
Returns the time spent in compute().
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1241
Mix-in interface for nested preconditioners.
Definition: Ifpack2_Details_NestedPreconditioner.hpp:97
MatrixType::node_type node_type
The Node type used by the input MatrixType.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:321
virtual Teuchos::RCP< const row_matrix_type > getMatrix() const
The input matrix.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:305
virtual double getApplyTime() const
Returns the time spent in apply().
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1248
virtual ~AdditiveSchwarz()
Destructor.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:275
Teuchos::ScalarTraits< scalar_type >::magnitudeType magnitude_type
The type of the magnitude (absolute value) of a matrix entry.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:324
std::string description() const
Return a simple one-line description of this object.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1255
AdditiveSchwarz(const Teuchos::RCP< const row_matrix_type > &A)
Constructor that takes a matrix.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:224
virtual void initialize()
Computes all (graph-related) data necessary to initialize the preconditioner.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1075
Ifpack2 implementation details.
virtual bool isInitialized() const
Returns true if the preconditioner has been successfully initialized, false otherwise.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1150
MatrixType::global_ordinal_type global_ordinal_type
The type of global indices in the input MatrixType.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:318
MatrixType::scalar_type scalar_type
The type of the entries of the input MatrixType.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:312
virtual int getOverlapLevel() const
Returns the level of overlap.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1427
virtual void setInnerPreconditioner(const Teuchos::RCP< Preconditioner< scalar_type, local_ordinal_type, global_ordinal_type, node_type > > &innerPrec)
Set the inner preconditioner.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1619
virtual int getNumCompute() const
Returns the number of calls to compute().
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1220
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:64
Interface for all Ifpack2 preconditioners.
Definition: Ifpack2_Preconditioner.hpp:107
virtual Teuchos::RCP< const Tpetra::Map< local_ordinal_type, global_ordinal_type, node_type > > getRangeMap() const
The range Map of this operator.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:293
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters() const
Get a list of the preconditioner's default parameters.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1031
Declaration of interface for preconditioners that can change their matrix after construction.
Tpetra::RowMatrix< scalar_type, local_ordinal_type, global_ordinal_type, node_type > row_matrix_type
The Tpetra::RowMatrix specialization matching MatrixType.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:330
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print the object with some verbosity level to an FancyOStream object.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1310
virtual std::ostream & print(std::ostream &os) const
Prints basic information on iostream. This function is used by operator<<.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1417
virtual void setParameters(const Teuchos::ParameterList &plist)
Set the preconditioner's parameters.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:842
Additive Schwarz domain decomposition for Tpetra sparse matrices.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:281
virtual bool isComputed() const
Returns true if the preconditioner has been successfully computed, false otherwise.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1206
Preconditioners and smoothers for Tpetra sparse matrices.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:72
virtual void setMatrix(const Teuchos::RCP< const row_matrix_type > &A)
Change the matrix to be preconditioned.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1687
MatrixType::local_ordinal_type local_ordinal_type
The type of local indices in the input MatrixType.
Definition: Ifpack2_AdditiveSchwarz_decl.hpp:315
virtual int getNumInitialize() const
Returns the number of calls to initialize().
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1213
virtual int getNumApply() const
Returns the number of calls to apply().
Definition: Ifpack2_AdditiveSchwarz_def.hpp:1227
virtual void apply(const Tpetra::MultiVector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > &X, Tpetra::MultiVector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, scalar_type alpha=Teuchos::ScalarTraits< scalar_type >::one(), scalar_type beta=Teuchos::ScalarTraits< scalar_type >::zero()) const
Apply the preconditioner to X, putting the result in Y.
Definition: Ifpack2_AdditiveSchwarz_def.hpp:314