Ifpack2 Templated Preconditioning Package Version 1.0
Loading...
Searching...
No Matches
Ifpack2_Chebyshev_decl.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Ifpack2: Templated Object-Oriented Algebraic Preconditioner Package
4//
5// Copyright 2009 NTESS and the Ifpack2 contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
16
17#ifndef IFPACK2_CHEBYSHEV_DECL_HPP
18#define IFPACK2_CHEBYSHEV_DECL_HPP
19
22
23// FIXME (mfh 20 Nov 2013) We really shouldn't have to include this.
24// We should handle the implementation by pointer instead of by value.
25#include "Ifpack2_Details_Chebyshev.hpp"
26
27// We only need the declaration here, and only for the method
28// getCrsMatrix. I would very much prefer that this method not exist.
29// Furthermore, it is both unsafe (MatrixType need not be CrsMatrix)
30// and completely redundant (just call getMatrix() and do the
31// dynamic_cast yourself).
32#include "Tpetra_CrsMatrix_decl.hpp"
33
34#include <type_traits>
35
36namespace Ifpack2 {
37
164template <class MatrixType>
165class Chebyshev : virtual public Ifpack2::Preconditioner<typename MatrixType::scalar_type,
166 typename MatrixType::local_ordinal_type,
167 typename MatrixType::global_ordinal_type,
168 typename MatrixType::node_type>,
169 virtual public Ifpack2::Details::CanChangeMatrix<Tpetra::RowMatrix<typename MatrixType::scalar_type,
170 typename MatrixType::local_ordinal_type,
171 typename MatrixType::global_ordinal_type,
172 typename MatrixType::node_type> > {
173 public:
175
176
178 typedef MatrixType matrix_type;
179
181 typedef typename MatrixType::scalar_type scalar_type;
182
184 typedef typename MatrixType::local_ordinal_type local_ordinal_type;
185
187 typedef typename MatrixType::global_ordinal_type global_ordinal_type;
188
190 typedef typename MatrixType::node_type::device_type device_type;
191
193 typedef typename MatrixType::node_type node_type;
194
196 typedef typename Teuchos::ScalarTraits<scalar_type>::magnitudeType magnitude_type;
197
202 typedef Tpetra::RowMatrix<scalar_type, local_ordinal_type,
205
206 static_assert(std::is_same<MatrixType, row_matrix_type>::value,
207 "Ifpack2::Chebyshev: MatrixType must be a Tpetra::RowMatrix "
208 "specialization. Don't use Tpetra::CrsMatrix here.");
209
211 typedef Tpetra::Map<local_ordinal_type, global_ordinal_type, node_type> map_type;
212
218 typedef Tpetra::Vector<scalar_type, local_ordinal_type,
221
223 // \name Constructors and destructors
225
247 explicit Chebyshev(const Teuchos::RCP<const row_matrix_type>& A);
248
250 virtual ~Chebyshev();
251
253
255
392 void setParameters(const Teuchos::ParameterList& params);
393
394 bool supportsZeroStartingSolution() { return true; }
395
396 void setZeroStartingSolution(bool zeroStartingSolution);
397
404 void initialize();
405
408 inline bool isInitialized() const {
409 return IsInitialized_;
410 }
411
444 void compute();
445
455 inline bool isComputed() const {
456 return IsComputed_;
457 }
458
460
462
485 virtual void
486 setMatrix(const Teuchos::RCP<const row_matrix_type>& A);
487
489
491
520 void
521 apply(const Tpetra::MultiVector<scalar_type, local_ordinal_type, global_ordinal_type, node_type>& X,
522 Tpetra::MultiVector<scalar_type, local_ordinal_type, global_ordinal_type, node_type>& Y,
523 Teuchos::ETransp mode = Teuchos::NO_TRANS,
524 scalar_type alpha = Teuchos::ScalarTraits<scalar_type>::one(),
525 scalar_type beta = Teuchos::ScalarTraits<scalar_type>::zero()) const;
526
528 Teuchos::RCP<const map_type> getDomainMap() const;
529
531 Teuchos::RCP<const map_type> getRangeMap() const;
532
534 bool hasTransposeApply() const;
535
556 void
557 applyMat(const Tpetra::MultiVector<scalar_type, local_ordinal_type, global_ordinal_type, node_type>& X,
558 Tpetra::MultiVector<scalar_type, local_ordinal_type, global_ordinal_type, node_type>& Y,
559 Teuchos::ETransp mode = Teuchos::NO_TRANS) const;
560
562
564
566 Teuchos::RCP<const Teuchos::Comm<int> > getComm() const;
567
569 Teuchos::RCP<const row_matrix_type> getMatrix() const;
570
575 Teuchos::RCP<const Tpetra::CrsMatrix<scalar_type, local_ordinal_type, global_ordinal_type, node_type> >
576 getCrsMatrix() const;
577
579 double getComputeFlops() const;
580
582 double getApplyFlops() const;
583
585 int getNumInitialize() const;
586
588 int getNumCompute() const;
589
591 int getNumApply() const;
592
594 double getInitializeTime() const;
595
597 double getComputeTime() const;
598
600 double getApplyTime() const;
601
603 size_t getNodeSmootherComplexity() const;
604
606 typename MatrixType::scalar_type getLambdaMaxForApply() const;
607
609
611
613 std::string description() const;
614
616 void describe(Teuchos::FancyOStream& out, const Teuchos::EVerbosityLevel verbLevel = Teuchos::Describable::verbLevel_default) const;
617
619
620 private:
622 typedef Teuchos::ScalarTraits<typename MatrixType::scalar_type> STS;
623
625 typedef Tpetra::MultiVector<scalar_type, local_ordinal_type, global_ordinal_type, node_type> MV;
626
629
632
640 void
641 applyImpl(const MV& X,
642 MV& Y,
643 Teuchos::ETransp mode,
644 scalar_type alpha,
645 scalar_type beta) const;
646
648
649
658
660 bool IsInitialized_;
662 bool IsComputed_;
664 int NumInitialize_;
666 int NumCompute_;
668 bool TimerForApply_;
673 mutable int NumApply_;
675 double InitializeTime_;
677 double ComputeTime_;
682 mutable double ApplyTime_;
684 double ComputeFlops_;
689 mutable double ApplyFlops_;
690
692}; // class Chebyshev
693
694} // namespace Ifpack2
695
696#endif // IFPACK2_CHEBYSHEV_DECL_HPP
Declaration of interface for preconditioners that can change their matrix after construction.
Diagonally scaled Chebyshev iteration for Tpetra sparse matrices.
Definition Ifpack2_Chebyshev_decl.hpp:172
MatrixType::global_ordinal_type global_ordinal_type
The type of global indices in the input MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:187
double getInitializeTime() const
The total time spent in all calls to initialize().
Definition Ifpack2_Chebyshev_def.hpp:145
void compute()
(Re)compute the left scaling, and (if applicable) estimate max and min eigenvalues of D_inv * A.
Definition Ifpack2_Chebyshev_def.hpp:258
std::string description() const
A simple one-line description of this object.
Definition Ifpack2_Chebyshev_def.hpp:283
Tpetra::Map< local_ordinal_type, global_ordinal_type, node_type > map_type
The Tpetra::Map specialization matching MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:211
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print the object with some verbosity level to a Teuchos::FancyOStream.
Definition Ifpack2_Chebyshev_def.hpp:310
Teuchos::RCP< const map_type > getRangeMap() const
The Tpetra::Map representing the range of this operator.
Definition Ifpack2_Chebyshev_def.hpp:114
void applyMat(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) const
Compute Y = Op(A)*X, where Op(A) is either A, , or .
Definition Ifpack2_Chebyshev_def.hpp:226
void initialize()
Initialize the preconditioner.
Definition Ifpack2_Chebyshev_def.hpp:244
Teuchos::RCP< const row_matrix_type > getMatrix() const
The matrix for which this is a preconditioner.
Definition Ifpack2_Chebyshev_def.hpp:81
int getNumApply() const
The total number of successful calls to apply().
Definition Ifpack2_Chebyshev_def.hpp:140
Teuchos::ScalarTraits< scalar_type >::magnitudeType magnitude_type
The type of the magnitude (absolute value) of a matrix entry.
Definition Ifpack2_Chebyshev_decl.hpp:196
MatrixType::node_type::device_type device_type
The Kokkos::Device specialization used by the input MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:190
MatrixType::local_ordinal_type local_ordinal_type
The type of local indices in the input MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:184
bool isInitialized() const
Definition Ifpack2_Chebyshev_decl.hpp:408
MatrixType::node_type node_type
The Node type used by the input MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:193
size_t getNodeSmootherComplexity() const
Get a rough estimate of cost per iteration.
Definition Ifpack2_Chebyshev_def.hpp:170
Tpetra::Vector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > vector_type
The Tpetra::Vector specialization matching MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:220
MatrixType::scalar_type scalar_type
The type of the entries of the input MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:181
virtual void setMatrix(const Teuchos::RCP< const row_matrix_type > &A)
Change the matrix to be preconditioned.
Definition Ifpack2_Chebyshev_def.hpp:45
Tpetra::RowMatrix< scalar_type, local_ordinal_type, global_ordinal_type, node_type > row_matrix_type
The Tpetra::RowMatrix specialization matching MatrixType.
Definition Ifpack2_Chebyshev_decl.hpp:204
bool isComputed() const
Definition Ifpack2_Chebyshev_decl.hpp:455
int getNumCompute() const
The total number of successful calls to compute().
Definition Ifpack2_Chebyshev_def.hpp:135
void setParameters(const Teuchos::ParameterList &params)
Set (or reset) parameters.
Definition Ifpack2_Chebyshev_def.hpp:54
double getComputeFlops() const
The total number of floating-point operations taken by all calls to compute().
Definition Ifpack2_Chebyshev_def.hpp:160
double getComputeTime() const
The total time spent in all calls to compute().
Definition Ifpack2_Chebyshev_def.hpp:150
Teuchos::RCP< const Tpetra::CrsMatrix< scalar_type, local_ordinal_type, global_ordinal_type, node_type > > getCrsMatrix() const
Attempt to return the matrix A as a Tpetra::CrsMatrix.
Definition Ifpack2_Chebyshev_def.hpp:91
void setZeroStartingSolution(bool zeroStartingSolution)
Set this preconditioner's parameters.
Definition Ifpack2_Chebyshev_def.hpp:62
Teuchos::RCP< const map_type > getDomainMap() const
The Tpetra::Map representing the domain of this operator.
Definition Ifpack2_Chebyshev_def.hpp:101
int getNumInitialize() const
The total number of successful calls to initialize().
Definition Ifpack2_Chebyshev_def.hpp:130
virtual ~Chebyshev()
Destructor.
Definition Ifpack2_Chebyshev_def.hpp:41
Teuchos::RCP< const Teuchos::Comm< int > > getComm() const
The communicator over which the matrix is distributed.
Definition Ifpack2_Chebyshev_def.hpp:68
double getApplyFlops() const
The total number of floating-point operations taken by all calls to apply().
Definition Ifpack2_Chebyshev_def.hpp:165
MatrixType matrix_type
The template parameter of this class.
Definition Ifpack2_Chebyshev_decl.hpp:178
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, returning the result in Y.
Definition Ifpack2_Chebyshev_def.hpp:183
MatrixType::scalar_type getLambdaMaxForApply() const
The estimate of the maximum eigenvalue used in the apply().
Definition Ifpack2_Chebyshev_def.hpp:438
bool hasTransposeApply() const
Whether it's possible to apply the transpose of this operator.
Definition Ifpack2_Chebyshev_def.hpp:125
double getApplyTime() const
The total time spent in all calls to apply().
Definition Ifpack2_Chebyshev_def.hpp:155
Mix-in interface for preconditioners that can change their matrix after construction.
Definition Ifpack2_Details_CanChangeMatrix.hpp:60
Ifpack2's implementation of Trilinos::Details::LinearSolver interface.
Definition Ifpack2_Details_LinearSolver_decl.hpp:75
Interface for all Ifpack2 preconditioners.
Definition Ifpack2_Preconditioner.hpp:74
Preconditioners and smoothers for Tpetra sparse matrices.
Definition Ifpack2_AdditiveSchwarz_decl.hpp:40