Linear Solvers
Introduction
Any physics solver relying on standard finite element and finite volume techniques requires the solution of algebraic linear systems, which are obtained upon linearization and discretization of the governing equations, of the form:
where is the square sparse matrix,
the solution vector, and
the right-hand side.
For example, in a classical linear elastostatics problem
is the stiffness matrix, and
and
are the displacement and nodal force vectors, respectively.
This solution stage represents the most computationally expensive portion of a typical simulation. Solution algorithms generally belong to two families of methods: direct methods and iterative methods. In GEOS both options are made available wrapping around well-established open-source linear algebra libraries, namely HYPRE, PETSc, SuperLU, and Trilinos.
Direct methods
The major advantages are their reliability, robustness, and ease of use.
However, they have large memory requirements and exhibit poor scalability. Direct methods should be used in a prototyping stage, for example when developing a new formulation or algorithm, when the dimension of the problem, namely the size of matrix , is small.
Irrespective of the selected direct solver implementation, three stages can be idenitified:
Setup Stage: the matrix is first analyzed and then factorized
Solve Stage: the solution to the linear systems involving the factorized matrix is computed
Finalize Stage: the systems involving the factorized matrix have been solved and the direct solver lifetime ends
The default option in GEOS relies on SuperLU, a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations, that is called taking advantage of the interface provided in HYPRE.
Iterative methods
As the problem size (number of computational cells) increases, global iterative solution strategies are the method of choice—typically nonsymmetric Krylov solvers.
Because of the possible poor conditioning of , preconditioning is essential to solve such systems efficiently.
‘’Preconditioning is simply a means of transforming the original linear system into one which has the same solution, but which is likely to be easier to solve with an iterative solver’’ [Saad (2003)].
The design of a robust and efficient preconditioner is based on a trade-off between two competing objectives:
Robustness: reducing the number of iterations needed by the preconditioned solver to achieve convergence;
Efficiency: limiting the time required to construct and apply the preconditioner.
Assuming a preconditioning matrix is available, three standard approaches are used to apply the preconditioner:
Left preconditioning: the preconditioned system is
Right preconditioning: the preconditioned system is
, with
Split preconditioning: the preconditioned system is
, with
Summary
The following table summarizes the available input parameters for the linear solver.
XML Element: LinearSolverParameters
Name |
Type |
Default |
Description |
|---|---|---|---|
adaptiveExponent |
real64 |
1 |
Exponent parameter for adaptive method |
adaptiveGamma |
real64 |
0.1 |
Gamma parameter for adaptive method |
amgAggressiveCoarseningLevels |
integer |
0 |
AMG number of levels for aggressive coarsening |
amgAggressiveCoarseningPaths |
integer |
1 |
AMG number of paths for aggressive coarsening |
amgAggressiveInterpType |
geos_LinearSolverParameters_AMG_AggInterpType |
multipass |
AMG aggressive interpolation algorithm. Available options are: |
amgCoarseSolver |
geos_LinearSolverParameters_AMG_CoarseType |
direct |
AMG coarsest level solver/smoother type. Available options are: |
amgCoarseningType |
geos_LinearSolverParameters_AMG_CoarseningType |
HMIS |
AMG coarsening algorithm. Available options are: |
amgInterpolationMaxNonZeros |
integer |
4 |
AMG interpolation maximum number of nonzeros per row |
amgInterpolationType |
geos_LinearSolverParameters_AMG_InterpType |
extendedI |
AMG interpolation algorithm. Available options are: |
amgMaxCoarseSize |
integer |
9 |
AMG threshold for coarse grid size |
amgNullSpaceType |
geos_LinearSolverParameters_AMG_NullSpaceType |
constantModes |
AMG near null space approximation. Available options are: |
amgNumCycles |
integer |
1 |
AMG number of cycles |
amgNumFunctions |
integer |
1 |
AMG number of functions |
amgNumSweeps |
integer |
1 |
AMG smoother sweeps |
amgRelaxWeight |
real64 |
1 |
AMG relaxation factor for the smoother |
amgSeparateComponents |
integer |
0 |
AMG apply separate component filter for multi-variable problems |
amgSmootherType |
geos_LinearSolverParameters_AMG_SmootherType |
l1sgs |
AMG smoother type. Available options are: |
amgThreshold |
real64 |
0 |
AMG strength-of-connection threshold |
chebyshevEigNumIter |
integer |
10 |
Number of eigenvalue estimation CG iterations |
chebyshevOrder |
integer |
2 |
Chebyshev order |
directCheckResidual |
integer |
0 |
Whether to check the linear system solution residual |
directColPerm |
geos_LinearSolverParameters_Direct_ColPerm |
metis |
How to permute the columns. Available options are: |
directEquil |
integer |
1 |
Whether to scale the rows and columns of the matrix |
directIterRef |
integer |
1 |
Whether to perform iterative refinement |
directParallel |
integer |
1 |
Whether to use a parallel solver (instead of a serial one) |
directReplTinyPivot |
integer |
1 |
Whether to replace tiny pivots by sqrt(epsilon)*norm(A) |
directRowPerm |
geos_LinearSolverParameters_Direct_RowPerm |
mc64 |
How to permute the rows. Available options are: |
hypredriveInputFile |
string |
Optional authoritative hypredrive YAML file. When provided, hypredrive consumes this file as-is for solver/preconditioner options. |
|
iluFill |
integer |
0 |
ILU(K) fill factor |
iluThreshold |
real64 |
0 |
ILU(T) threshold factor |
krylovAdaptiveTol |
integer |
0 |
Use Eisenstat-Walker adaptive linear tolerance |
krylovMaxIter |
integer |
200 |
Maximum iterations allowed for an iterative solver |
krylovMaxRestart |
integer |
200 |
Maximum iterations before restart (GMRES only) |
krylovStrongestTol |
real64 |
1e-08 |
Strongest-allowed tolerance for adaptive method |
krylovTol |
real64 |
1e-06 |
Relative convergence tolerance of the iterative method
If the method converges, the iterative solution
the relative residual norm satisfies:
krylovTol * |
krylovWeakestTol |
real64 |
0.001 |
Weakest-allowed tolerance for adaptive method |
logLevel |
integer |
0 |
Sets the level of information to write in the standard output (the console typically).
Information output from lower logLevels is added with the desired log level
1
- Linear solver information
|
preconditionerType |
geos_LinearSolverParameters_PreconditionerType |
iluk |
Preconditioner type. Available options are: |
relaxationWeight |
real64 |
0.666667 |
Relaxation weight (omega) for stationary iterations |
reuseFactorization |
integer |
0 |
Whether to reuse the LU factorization (experimental) |
solverType |
geos_LinearSolverParameters_SolverType |
direct |
Linear solver type. Available options are: |
stopIfError |
integer |
1 |
Whether to stop the simulation if the linear solver reports an error |
Block |
node |
unique |
|
Multiscale |
node |
unique |
HYPRE through hypredrive
When GEOS is built with both HYPRE and HYPREDRV support, the standard HYPRE-based
linear solver path can delegate iterative solves to hypredrive.
This provides a YAML-driven way to configure HYPRE solvers and preconditioners while keeping
GEOS backward compatible with the existing LinearSolverParameters input block.
At runtime, GEOS still owns the assembled linear system objects and passes the following data to hypredrive in library mode:
the HYPRE matrix,
the right-hand side and solution vectors,
the degree-of-freedom map when it is available.
The hypredrive input only controls solver and preconditioner configuration. Matrix assembly, vector ownership, and all higher-level GEOS solver logic remain unchanged.
Build requirements
This feature is optional. It is available only when GEOS is configured with:
ENABLE_HYPRE=ON,ENABLE_HYPREDRV=ON,HYPREDRV_DIRpointing to a hypredrive installation or package configuration directory.
If GEOS is built without hypredrive support, setting hypredriveInputFile in the XML input
is an error.
When enabled, hypredrive owns HYPRE runtime initialization and finalization. No additional user input is required for this.
Two configuration modes
GEOS can use hypredrive in two different ways.
Authoritative YAML file: the user supplies a hypredrive YAML file through
LinearSolverParameters/hypredriveInputFile.Generated fallback YAML: if no file is supplied, GEOS translates the supported
LinearSolverParametersoptions into an in-memory hypredrive YAML document.
In both cases, the switch is transparent to the calling physics solver.
Generated YAML from GEOS input
If hypredriveInputFile is left empty, GEOS attempts to generate an equivalent hypredrive
input from the existing LinearSolverParameters values. This preserves the familiar GEOS XML
workflow while letting hypredrive manage the actual HYPRE solver objects.
In this generated path, GEOS currently keeps preconditioner.reuse disabled. Reuse is
available today through the authoritative-YAML mode, where the user can write the reuse block
directly in hypredrive YAML.
The generated path currently supports the following iterative solver types:
cg(translated to hypredrivepcg),gmres,fgmres,bicgstab.
The generated path currently supports the following preconditioners:
none,amg,mgr,iluk,ilut.
For generated AMG YAML, GEOS translates GEOS smoother and coarse-grid options to the canonical hypredrive names. Important examples are:
fgs->forward-hl1gs,bgs->backward-hl1gs,l1jacobi->l1-jacobi,sgs->hsgs,l1sgs->l1-hsgs,directcoarse solve ->ge.
For example, a generated AMG configuration passed to hypredrive has the form:
solver:
gmres:
max_iter: 300
relative_tol: 1.0e-8
krylov_dim: 200
preconditioner:
amg:
tolerance: 0.0
max_iter: 1
relaxation:
down_type: forward-hl1gs
up_type: forward-hl1gs
coarse_type: ge
If GEOS cannot represent the requested configuration as valid hypredrive YAML, it automatically falls back to the legacy GEOS HYPRE setup path. This keeps existing inputs working even when they use options that are not yet translated to hypredrive.
Common cases that currently stay on the legacy HYPRE path are:
unsupported generated solver or preconditioner combinations,
krylovAdaptiveTolenabled,AMG options that are not translated by the generated YAML builder.
When exact control is required, prefer the authoritative YAML-file mode.
Generated MGR YAML and symbolic dof labels
The generated hypredrive MGR path mirrors the MGR strategies already implemented in GEOS.
In addition to the solver and preconditioner sections, GEOS emits a
linear_system.dof_labels block so that MGR levels can refer to symbolic names instead of raw
integer component ids.
The labels are derived from the GEOS degree-of-freedom manager:
field names are taken in registration order,
names are sanitized to YAML-friendly tokens,
each component is suffixed with its component index.
For a displacement-pressure system, the generated YAML may look like:
linear_system:
dof_labels:
u_0: 0
u_1: 1
u_2: 2
p: 3
preconditioner:
mgr:
level:
0:
f_dofs: [u_0, u_1, u_2]
This makes the generated MGR configuration much easier to inspect and compare with standalone hypredrive YAML files.
Logging, debugging, and fallback control
The linear-solver logLevel can be used to inspect what GEOS is passing to hypredrive:
if
logLevel < 1, no additional hypredrive input is printed,if
logLevel >= 1andhypredriveInputFileis set, GEOS logs a delimited YAML block with a comment identifying the authoritative file and, when readable from GEOS, the authoritative YAML contents,if
logLevel >= 1and GEOS generates the YAML itself, GEOS logs the full generated YAML in the same delimited format,GEOS emits this hypredrive input dump once per hypredrive-using solver during startup, after solver initialization has finalized the effective configuration and before the
Import fieldslog section,for those solvers, GEOS suppresses the usual GEOS linear-solver parameter table and logs only the hypredrive YAML block,
the hypredrive YAML does not repeat on later setups,
when hypredrive statistics printing is enabled, the destroy-time
STATISTICS SUMMARYbanner usesgeneral.namewhen present in authoritative YAML, and GEOS labels generated-fallback objects with the owning solver name automatically,internally, GEOS drives hypredrive through handle-scoped
system,timestep, andnewtonannotations inside the hypredrive adapter rather than from the generic physics solver layer.
Numeric meanings of logLevel for hypredrive (for example 2, 4, 48, 56)
are summarized in Important ``logLevel`` values (hypredrive) in the parameter table section
above. That subsection is especially useful when validating a new solver recipe or comparing
the generated GEOS configuration with a standalone hypredrive input file.
For regression studies and side-by-side comparisons, hypredrive can be disabled at runtime by setting the environment variable:
export GEOS_HYPREDRV_FORCE_LEGACY=1
When this variable is set, GEOS bypasses hypredrive and uses the legacy HYPRE implementation even if GEOS was built with hypredrive support.
Preconditioner descriptions
This section provides a brief description of the available preconditioners.
None: no preconditioning is used, i.e.,
.
Jacobi: diagonal scaling preconditioning, with
, with
the matrix diagonal. Further details can be found in:
ILUK: incomplete LU factorization with fill level k of the original matrix:
. Further details can be found in:
ILUT: a dual threshold incomplete LU factorization:
. Further details can be found in:
not yet available through PETSc interface,
ICC: incomplete Cholesky factorization of a symmetric positive definite matrix:
. Further details can be found in:
not yet available through hypre interface,
AMG: algebraic multigrid (can be classical or aggregation-based according to the specific package). Further details can be found in:
MGR: multigrid reduction. Available through hypre interface only. Further details can be found in MGR documentation, also see section below.
Block: custom preconditioner designed for a 2 x 2 block matrix.
HYPRE MGR Preconditioner
MGR stands for multigrid reduction, a multigrid method that uses the interpolation, restriction operators, and the Galerkin triple product, to reduce a linear system to a smaller one, similar to a Schur complement approach. As such, it is designed to target block linear systems resulting from discretizations of multiphysics problems. GEOS uses MGR through an implementation in HYPRE. More information regarding MGR can be found here. Currently, MGR strategies are implemented for hydraulic fracturing, singlephase and multiphase poromechanics, singlephase poromechanics with fractures, compositional flow with and without wells. More multiphysics solvers with MGR will be enabled in the future.
To use MGR for a specific block system, several components need to be specified.
The number of reduction levels and the coarse points (corresponding to fields) for each level. For example, for single-phase hydraulic fracturing, there are two fields, i.e. displacement and fluid pressure, a two-level MGR strategy can be used with the fluid pressure being the coarse degrees of freedom.
Interpolation/restriction operators and the coarse-grid computation strategy. A simple but effective strategy is to use Jacobi diagonalization for interpolation and injection for restriction. For most cases, a Galerkin coarse grid strategy can be used, but for special cases such as poroelastic, a non-Galerkin approach is preferable.
Global smoother. Depending on the problem, a global relaxation step could be beneficial. Some options include ILU(k), (block) Jacobi, (block) Gauss-Seidel.
Solvers for F-relaxation and coarse-grid correction. These solvers should be chosen carefully for MGR to be effective. The choice of these solvers should correspond to the properties of the blocks specified by the C- and F-points. For example, if the
block is hyperbolic, a Jacobi smoother is sufficient while for an elliptic operator an AMG V-cycle might be required. For the single-phase hydraulic fracturing case, an AMG V-cycle is needed for both F-relaxation and coarse-grid correction.
Note that these are only general guidelines for designing a working MGR recipe. For complicated multiphysics problems, experimentation with different numbers of levels, choices of C- and F-points, and smoothers/solvers, etc., is typically needed to find the best strategy. Currently, these options are only available to developers. We are working on exposing these functionalities to the users in future releases.
Block preconditioner
This framework allows the user to design a block preconditioner for a 2 x 2 block matrix. The key component is the Schur complement
computation, that requires
an approximation of the leading block. Currently, available options for
are:
diagonal with diagonal values (essentially, a Jacobi preconditioner);
diagonal with row sums as values (e.g., used for CPR-like preconditioners).
Once the Schur complement is computed, to properly define the block preconditioner we need:
the preconditioner for
(any of the above listed single-matrix preconditioner);
the preconditioner for
(any of the above listed single-matrix preconditioner);
the application strategy. This can be:
diagonal: none of the coupling terms is used;
upper triangular: only the upper triangular coupling term is used;
lower-upper triangular: both coupling terms are used.
Moreover, a block scaling is available. Feasible options are:
none: keep the original scaling;
Frobenius norm: equilibrate Frobenius norm of the diagonal blocks;
user provided.
Adaptive tolerance
This feature is available for iterative solvers and can be enabled using krylovAdaptiveTol flag in LinearSolverParameters. It follows the Eisenstat-Walker inexact Newton approach described in [Eisenstat and Walker 1996]. The key idea is to relax the linear solver tolerance at the beginning of the nonlinear iterations loop and tighten it when getting closer to the final solution. The initial tolerance is defined by krylovWeakestTol and starting from second nonlinear iteration the tolerance is chosen using the following steps:
compute the current to previous nonlinear norm ratio:
estimate the new linear solver tolerance:
compute a safeguard to avoid too sharp tolerance reduction:
(the bound is the quadratic reduction with respect to the previous tolerance value)
apply safeguards and compute the final tolerance:
,
Here is the forcing term,
is the adaptivity exponent,
and
are prescribed tolerance bounds (defined by krylovStrongestTol and krylovWeakestTol, respectively).