![]() |
MFEM
v4.5.1
Finite element discretization library
|
Parallel smoothers in hypre. More...
#include <hypre.hpp>
Public Types | |
| enum | Type { Jacobi = 0, l1Jacobi = 1, l1GS = 2, l1GStr = 4, lumpedJacobi = 5, GS = 6, OPFS = 10, Chebyshev = 16, Taubin = 1001, FIR = 1002 } |
Public Types inherited from mfem::Operator | |
| enum | DiagonalPolicy { DIAG_ZERO, DIAG_ONE, DIAG_KEEP } |
| Defines operator diagonal policy upon elimination of rows and/or columns. More... | |
| enum | Type { ANY_TYPE, MFEM_SPARSEMAT, Hypre_ParCSR, PETSC_MATAIJ, PETSC_MATIS, PETSC_MATSHELL, PETSC_MATNEST, PETSC_MATHYPRE, PETSC_MATGENERIC, Complex_Operator, MFEM_ComplexSparseMat, Complex_Hypre_ParCSR, Complex_DenseMat, MFEM_Block_Matrix, MFEM_Block_Operator } |
| Enumeration defining IDs for some classes derived from Operator. More... | |
Public Member Functions | |
| HypreSmoother () | |
| HypreSmoother (const HypreParMatrix &A_, int type=default_type, int relax_times=1, double relax_weight=1.0, double omega=1.0, int poly_order=2, double poly_fraction=.3, int eig_est_cg_iter=10) | |
| void | SetType (HypreSmoother::Type type, int relax_times=1) |
| Set the relaxation type and number of sweeps. More... | |
| void | SetSOROptions (double relax_weight, double omega) |
| Set SOR-related parameters. More... | |
| void | SetPolyOptions (int poly_order, double poly_fraction, int eig_est_cg_iter=10) |
| Set parameters for polynomial smoothing. More... | |
| void | SetTaubinOptions (double lambda, double mu, int iter) |
| Set parameters for Taubin's lambda-mu method. More... | |
| void | SetWindowByName (const char *window_name) |
| Convenience function for setting canonical windowing parameters. More... | |
| void | SetWindowParameters (double a, double b, double c) |
| Set parameters for windowing function for FIR smoother. More... | |
| void | SetFIRCoefficients (double max_eig) |
| Compute window and Chebyshev coefficients for given polynomial order. More... | |
| void | SetPositiveDiagonal (bool pos=true) |
| After computing l1-norms, replace them with their absolute values. More... | |
| void | SetOperatorSymmetry (bool is_sym) |
| virtual void | SetOperator (const Operator &op) |
| virtual void | Mult (const HypreParVector &b, HypreParVector &x) const |
| Relax the linear system Ax=b. More... | |
| virtual void | Mult (const Vector &b, Vector &x) const |
Operator application: y=A(x). More... | |
| virtual void | MultTranspose (const Vector &b, Vector &x) const |
| Apply transpose of the smoother to relax the linear system Ax=b. More... | |
| virtual | ~HypreSmoother () |
Public Member Functions inherited from mfem::Solver | |
| Solver (int s=0, bool iter_mode=false) | |
| Initialize a square Solver with size s. More... | |
| Solver (int h, int w, bool iter_mode=false) | |
| Initialize a Solver with height h and width w. More... | |
Public Member Functions inherited from mfem::Operator | |
| void | InitTVectors (const Operator *Po, const Operator *Ri, const Operator *Pi, Vector &x, Vector &b, Vector &X, Vector &B) const |
| Initializes memory for true vectors of linear system. More... | |
| Operator (int s=0) | |
| Construct a square Operator with given size s (default 0). More... | |
| Operator (int h, int w) | |
| Construct an Operator with the given height (output size) and width (input size). More... | |
| int | Height () const |
| Get the height (size of output) of the Operator. Synonym with NumRows(). More... | |
| int | NumRows () const |
| Get the number of rows (size of output) of the Operator. Synonym with Height(). More... | |
| int | Width () const |
| Get the width (size of input) of the Operator. Synonym with NumCols(). More... | |
| int | NumCols () const |
| Get the number of columns (size of input) of the Operator. Synonym with Width(). More... | |
| virtual MemoryClass | GetMemoryClass () const |
| Return the MemoryClass preferred by the Operator. More... | |
| virtual Operator & | GetGradient (const Vector &x) const |
| Evaluate the gradient operator at the point x. The default behavior in class Operator is to generate an error. More... | |
| virtual void | AssembleDiagonal (Vector &diag) const |
| Computes the diagonal entries into diag. Typically, this operation only makes sense for linear Operators. In some cases, only an approximation of the diagonal is computed. More... | |
| virtual const Operator * | GetProlongation () const |
Prolongation operator from linear algebra (linear system) vectors, to input vectors for the operator. NULL means identity. More... | |
| virtual const Operator * | GetRestriction () const |
Restriction operator from input vectors for the operator to linear algebra (linear system) vectors. NULL means identity. More... | |
| virtual const Operator * | GetOutputProlongation () const |
Prolongation operator from linear algebra (linear system) vectors, to output vectors for the operator. NULL means identity. More... | |
| virtual const Operator * | GetOutputRestrictionTranspose () const |
| Transpose of GetOutputRestriction, directly available in this form to facilitate matrix-free RAP-type operators. More... | |
| virtual const Operator * | GetOutputRestriction () const |
Restriction operator from output vectors for the operator to linear algebra (linear system) vectors. NULL means identity. More... | |
| void | FormLinearSystem (const Array< int > &ess_tdof_list, Vector &x, Vector &b, Operator *&A, Vector &X, Vector &B, int copy_interior=0) |
| Form a constrained linear system using a matrix-free approach. More... | |
| void | FormRectangularLinearSystem (const Array< int > &trial_tdof_list, const Array< int > &test_tdof_list, Vector &x, Vector &b, Operator *&A, Vector &X, Vector &B) |
| Form a column-constrained linear system using a matrix-free approach. More... | |
| virtual void | RecoverFEMSolution (const Vector &X, const Vector &b, Vector &x) |
| Reconstruct a solution vector x (e.g. a GridFunction) from the solution X of a constrained linear system obtained from Operator::FormLinearSystem() or Operator::FormRectangularLinearSystem(). More... | |
| void | FormSystemOperator (const Array< int > &ess_tdof_list, Operator *&A) |
| Return in A a parallel (on truedofs) version of this square operator. More... | |
| void | FormRectangularSystemOperator (const Array< int > &trial_tdof_list, const Array< int > &test_tdof_list, Operator *&A) |
| Return in A a parallel (on truedofs) version of this rectangular operator (including constraints). More... | |
| void | FormDiscreteOperator (Operator *&A) |
| Return in A a parallel (on truedofs) version of this rectangular operator. More... | |
| void | PrintMatlab (std::ostream &out, int n, int m=0) const |
| Prints operator with input size n and output size m in Matlab format. More... | |
| virtual void | PrintMatlab (std::ostream &out) const |
| Prints operator in Matlab format. More... | |
| virtual | ~Operator () |
| Virtual destructor. More... | |
| Type | GetType () const |
| Return the type ID of the Operator class. More... | |
Static Public Attributes | |
| static constexpr Type | default_type = l1GS |
Protected Attributes | |
| HypreParMatrix * | A |
| The linear system matrix. More... | |
| HypreParVector * | B |
| Right-hand side and solution vectors. More... | |
| HypreParVector * | X |
| Memory< double > | auxB |
| Auxiliary buffers for the case when the input or output arrays in methods like Mult(const Vector &, Vector &) need to be deep copied in order to be used by hypre. More... | |
| Memory< double > | auxX |
| HypreParVector * | V |
| Temporary vectors. More... | |
| HypreParVector * | Z |
| HypreParVector * | X0 |
| FIR Filter Temporary Vectors. More... | |
| HypreParVector * | X1 |
| int | type |
| int | relax_times |
| Number of relaxation sweeps. More... | |
| double | relax_weight |
| Damping coefficient (usually <= 1) More... | |
| double | omega |
| SOR parameter (usually in (0,2)) More... | |
| int | poly_order |
| Order of the smoothing polynomial. More... | |
| double | poly_fraction |
| Fraction of spectrum to smooth for polynomial relaxation. More... | |
| int | poly_scale |
| Apply the polynomial smoother to A or D^{-1/2} A D^{-1/2}. More... | |
| double | lambda |
| Taubin's lambda-mu method parameters. More... | |
| double | mu |
| int | taubin_iter |
| double * | l1_norms |
| l1 norms of the rows of A More... | |
| bool | pos_l1_norms |
| If set, take absolute values of the computed l1_norms. More... | |
| int | eig_est_cg_iter |
| Number of CG iterations to determine eigenvalue estimates. More... | |
| double | max_eig_est |
| Maximal eigenvalue estimate for polynomial smoothing. More... | |
| double | min_eig_est |
| Minimal eigenvalue estimate for polynomial smoothing. More... | |
| double | window_params [3] |
| Parameters for windowing function of FIR filter. More... | |
| double * | fir_coeffs |
| Combined coefficients for windowing and Chebyshev polynomials. More... | |
| bool | A_is_symmetric |
| A flag that indicates whether the linear system matrix A is symmetric. More... | |
Protected Attributes inherited from mfem::Operator | |
| int | height |
| Dimension of the output / number of rows in the matrix. More... | |
| int | width |
| Dimension of the input / number of columns in the matrix. More... | |
Additional Inherited Members | |
Public Attributes inherited from mfem::Solver | |
| bool | iterative_mode |
| If true, use the second argument of Mult() as an initial guess. More... | |
Protected Member Functions inherited from mfem::Operator | |
| void | FormConstrainedSystemOperator (const Array< int > &ess_tdof_list, ConstrainedOperator *&Aout) |
| see FormSystemOperator() More... | |
| void | FormRectangularConstrainedSystemOperator (const Array< int > &trial_tdof_list, const Array< int > &test_tdof_list, RectangularConstrainedOperator *&Aout) |
| see FormRectangularSystemOperator() More... | |
| Operator * | SetupRAP (const Operator *Pi, const Operator *Po) |
| Returns RAP Operator of this, using input/output Prolongation matrices Pi corresponds to "P", Po corresponds to "Rt". More... | |
Hypre smoother types: 0 = Jacobi 1 = l1-scaled Jacobi 2 = l1-scaled block Gauss-Seidel/SSOR 4 = truncated l1-scaled block Gauss-Seidel/SSOR 5 = lumped Jacobi 6 = Gauss-Seidel 10 = On-processor forward solve for matrix w/ triangular structure 16 = Chebyshev 1001 = Taubin polynomial smoother 1002 = FIR polynomial smoother.
| Enumerator | |
|---|---|
| Jacobi | |
| l1Jacobi | |
| l1GS | |
| l1GStr | |
| lumpedJacobi | |
| GS | |
| OPFS | |
| Chebyshev | |
| Taubin | |
| FIR | |
| mfem::HypreSmoother::HypreSmoother | ( | const HypreParMatrix & | A_, |
| int | type = default_type, |
||
| int | relax_times = 1, |
||
| double | relax_weight = 1.0, |
||
| double | omega = 1.0, |
||
| int | poly_order = 2, |
||
| double | poly_fraction = .3, |
||
| int | eig_est_cg_iter = 10 |
||
| ) |
|
virtual |
Apply transpose of the smoother to relax the linear system Ax=b.
Reimplemented from mfem::Operator.
| void mfem::HypreSmoother::SetFIRCoefficients | ( | double | max_eig | ) |
|
virtual |
Set/update the associated operator. Must be called after setting the HypreSmoother type and options.
Implements mfem::Solver.
|
inline |
Explicitly indicate whether the linear system matrix A is symmetric. If A is symmetric, the smoother will also be symmetric. In this case, calling MultTranspose will be redirected to Mult. (This is also done if the smoother is diagonal.) By default, A is assumed to be nonsymmetric.
| void mfem::HypreSmoother::SetPolyOptions | ( | int | poly_order, |
| double | poly_fraction, | ||
| int | eig_est_cg_iter = 10 |
||
| ) |
|
inline |
| void mfem::HypreSmoother::SetSOROptions | ( | double | relax_weight, |
| double | omega | ||
| ) |
| void mfem::HypreSmoother::SetTaubinOptions | ( | double | lambda, |
| double | mu, | ||
| int | iter | ||
| ) |
| void mfem::HypreSmoother::SetType | ( | HypreSmoother::Type | type, |
| int | relax_times = 1 |
||
| ) |
| void mfem::HypreSmoother::SetWindowByName | ( | const char * | window_name | ) |
| void mfem::HypreSmoother::SetWindowParameters | ( | double | a, |
| double | b, | ||
| double | c | ||
| ) |
|
protected |
|
protected |
|
mutableprotected |
|
mutableprotected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
mutableprotected |
|
protected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
1.8.5