A python implementation of the GMRES algorithm
Project description
PyGMRES
An all-python implementation of the GMRES algorithm. Numba acceleration is available (and enabled by default).
Using PyGMRES
The GMRES
solves the linear b = A(x)
using:
PyGMRES.gmres.GMRES(A, b, x0, e, max_iter, restart=None, debug=False)
where A
is a linear operator, x0
is the initial guess for the solution x
,
e > |A(x) - b|
is the tolerance, max_iter
is the maximum number of
iterations -- if GMRES
does not converge on a solution, it is stopped after
max_iter
.
The PyGMRES solver GMRES
can be run in two modes:
- Regular mode: when
restart = None
the full Krylov subspace is used to solve the problem. This mode is guaranteed to find a solution (if one exists), but scales poorly. - Restarted mode: when
restart = N
then the Krylov subspace used by the solver is rebuilt everyN
steps. This mode is not guaranteed to find a solution for certain intial conditions, but scales well.
Discrete Laplace Operators
PyGMRES provides implementations of the 1D and 2D discrete laplace operators in
the PyGMRES.linop
module:
- 1D laplacian:
laplace_1d
,laplace_1d_dirichlet
,laplace_1d_constextrap
, andlaplace_1d_extrap
which provide periodic, dirichlet, constant extrapolation, and linear extrapolation respectively. - 2D laplacian:
laplace_2d
,laplace_2d_dirichlet
,laplace_2d_constextrap
, andlaplace_2d_extrap
which provide periodic, dirichlet, constant extrapolation, and linear extrapolation respectively.
Numba Compiler
The PyGMRES.compiler
module provides the standard Numba JIT compiler
decorator. All operators and the GMRES solver are compiled when their host
modules are first imported. The compiler can be enabled, or disabled using the
PyGMRES.compiler.RC
class. For example this will enable compilation (on by
default):
from PyGMRES.compiler import RC
RC().enable_numba = True
Ance any module compiles any of its functions, RC().enable_numba
cannot be
changed. RC()
is intended for those situations where Numba cannot be installed
on a target system. If Numba is enabled, the originial (non-compiled) functions
are avaialable using get_undecorated_fn(name)
, for example:
from PyGMRES.compiler import get_undecorated_fn
laplace_1d_uncompiled = get_undecorated_fn("laplace_1d_dirichlet")
Helper Functions
PyGMRES preovides helper functions for common tasks
Computing the Residuals
PyGMRES.linop.resid
computes the residual A(x) - b
, for example
from PyGMRES.linop import laplace_2d_extrap, resid
r_laplace_2d = resid(A, x, b)
Example
The following code solved the 2D Laplace equation with von Neumann (constant derivative) boundary conditions, along with the residuals of each iteration:
import numpy as np
from PyGMRES.gmres import GMRES
from PyGMRES.linop import laplace_2d_extrap, resid
# Use odd dimension because we want to put a point-source in the center.
Nx = 81
Ny = 81
# Set up the RHS
b = np.zeros((Nx, Ny))
b[int(Nx/2), int(Ny/2)] = 1
x0 = np.zeros_like(b)
# Tolerance of the funal results
tol = 1e-10
# Note: here we chose nmax_iter to be << N[x,y] -- if not, then this is
# basically the non-restarted version of GMRES
nmax_iter = 10
restart = 64
# Run GMRES in debug mode => intermediate solutions are returned as an array
x_laplace_2d = GMRES(
laplace_2d_extrap, b, x0, tol, nmax_iter, restart=restart, debug=True
)
# Compute the residuals
r_laplace_2d = resid(laplace_2d_extrap, x_laplace_2d, b)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file PyGMRES-0.1.1.tar.gz
.
File metadata
- Download URL: PyGMRES-0.1.1.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2033561fcf70fd44bbd9325d5f9a01443c3115419e98e9c7ee1690a62d6e024d |
|
MD5 | 7773770804b56fc4913a79ca7ca9c1f5 |
|
BLAKE2b-256 | d9ef2a0289115933c140d3418279cc26d10aab4657084250066a8d976858b5ef |