4.1 pde.backends package
Defines backends, which implement efficient numerical simulations.
Backends are classes that provide logic to carry out numerical calculations. In particular, each of these classes implements various operators. In principle, backend classes can be defined independently, but we use some inheritance to share logic.
Moreover, we provide a BackendRegistry, which allows
selecting backends by their identifier, so users do not usually need to construct
backend classes. Users should access the registry via the function get_backend()
to load a backend in their code.
Class handling all backends and their configurations. |
|
Defines |
|
Defines |
|
Defines MPI-compatible numba backend. |
|
Defines |
|
Defines |
|
Defines |
Inheritance structure of the classes:

- class BackendBase(config, *, name=None)[source]
Bases:
Generic[TNativeArray]Basic backend from which all other backends inherit.
The generic type parameter TNativeArray determines the type of the native data representation of the backend.
Initialize the backend.
- Parameters:
- compile_function(func, **kwargs)[source]
General method that compiles a user function.
- Parameters:
func (callable) – The function that needs to be compiled for this backend
**kwargs – Additional arguments affecting how the function is compiled
- Return type:
TFunc
- config_inheritance: list[str] = []
Additional backends that are queried for configuration parameters.
- Type:
- copy_data: bool = False
Data must be copied from CPU numpy representation to a native device.
- Type:
- classmethod from_args(config, args='', *, name=None)[source]
Initialize backend with extra arguments.
- get_operator_info(grid, operator)[source]
Return an operator for a particular grid.
- Parameters:
- Returns:
information for the operator
- Return type:
OperatorInfo
- implementation: str = 'undefined'
The name of the python module that is used to implement this backend. This information can be used to distinguish the general implementation of backends.
- Type:
- make_data_setter(grid, rank, bcs=None)[source]
Create a function to set the valid part of a full data array.
- Parameters:
grid (
GridBase) – Grid for which the data setter is definedrank (int) – Rank of the data represented on the grid
bcs (
BoundariesBase, optional) – If supplied, the returned function also enforces boundary conditions by setting the ghost cells to the correct values
- Returns:
Takes two numpy arrays, setting the valid data in the first one, using the second array. The arrays need to be allocated already and they need to have the correct dimensions, which are not checked. If bcs are given, a third argument is allowed, which sets arguments for the BCs.
- Return type:
callable
- make_expression_function(expression, *, single_arg=False, user_funcs=None)[source]
Return a function evaluating an expression.
- Parameters:
expression (
ExpressionBase) – The expression that is converted to a functionsingle_arg (bool) – Determines whether the returned function accepts all variables in a single argument as an array or whether all variables need to be supplied separately.
user_funcs (dict) – Additional functions that can be used in the expression.
- Returns:
the function
- Return type:
function
- make_full_data_setter(bcs)[source]
Create a function to set the valid part of a full data array.
- Parameters:
bcs (
BoundariesBase, optional) – If supplied, the returned function also enforces boundary conditions by setting the ghost cells to the correct values- Returns:
Takes two numpy arrays, setting the valid data in the first one, using the second array. The arrays need to be allocated already and they need to have the correct dimensions, which are not checked. If bcs are given, a third argument is allowed, which sets arguments for the BCs.
- Return type:
callable
- make_gaussian_noise(field, *, rng)[source]
Create a function generating Gaussian white noise.
- Parameters:
field (
FieldBase) – An example for the field from which the grid and other information can be extractedrng (
Generator) – Random number generator (default:default_rng()).
- Return type:
Callable[[], TNativeArray]
- make_ghost_cell_setter(bcs)[source]
Return function that sets the ghost cells on a full array.
- Parameters:
bcs (
BoundariesBase) – Defines the boundary conditions for a particular grid, for which the setter should be defined.- Returns:
Callable with signature
(data_full: NumericArray, args=None), which sets the ghost cells of the full data, potentially using additional information in args (e.g., the time t during solving a PDE)- Return type:
- make_inner_prod_operator(field, *, conjugate=True)[source]
Return operator calculating the dot product between two fields.
This supports both products between two vectors as well as products between a vector and a tensor.
- Parameters:
field (
DataFieldBase) – Field for which the inner product is definedconjugate (bool) – Whether to use the complex conjugate for the second operand
- Returns:
Function that takes two instance of native data arrays, which contain the discretized data of the two operands. An optional third argument can specify the output array to which the result is written.
- Return type:
BinaryOperatorImplType
- make_integrator(grid)[source]
Return function that integrates discretized data over a grid.
Note that this function takes and returns data in the native representation of the backend. If this function is used in a multiprocessing run (using MPI), the integrals are performed on all subgrids and then accumulated. Each process then receives the same value representing the global integral.
- Parameters:
grid (
GridBase) – Grid for which the operator is needed- Returns:
A function that takes a numpy array and returns the integral with the correct weights given by the cell volumes.
- Return type:
Callable[[TNativeArray], TNativeArray]
- make_interpolator(field, *, fill=None, with_ghost_cells=False)[source]
Returns a function that can be used to interpolate values.
- Parameters:
field (
DataFieldBase) – Field for which the interpolator is definedfill (Number, optional) – Determines how values out of bounds are handled. If None, a ValueError is raised when out-of-bounds points are requested. Otherwise, the given value is returned.
with_ghost_cells (bool) – Flag indicating that the interpolator should work on the full data array that includes values for the ghost points. If this is the case, the boundaries are not checked and the coordinates are used as is.
- Returns:
A function which returns interpolated values when called with arbitrary positions within the space of the grid.
- Return type:
Callable[[FloatingArray, NumericArray], NumberOrArray]
- make_mpi_synchronizer(operator='MAX', mpi_run=False)[source]
Return function that synchronizes values between multiple MPI processes.
Warning
The default implementation does not synchronize anything. This is simply a hook, which can be used by backends that support MPI
- Parameters:
- Returns:
Function that can be used to synchronize values across nodes
- Return type:
- make_operator(grid, operator, *, bcs, dtype=None, **kwargs)[source]
Return a compiled function applying an operator with boundary conditions.
- Parameters:
grid (
GridBase) – Grid for which the operator is neededoperator (str) – Identifier for the operator. Some examples are ‘laplace’, ‘gradient’, or ‘divergence’. The registered operators for this grid can be obtained from the
operatorsattribute.bcs (
BoundariesBase) – The boundary conditions used before the operator is applieddtype (numpy dtype) – The data type of the field.
**kwargs – Specifies extra arguments influencing how the operator is created.
- Return type:
The returned function takes the discretized data on the grid as an input and returns the data to which the operator operator has been applied. The function only takes the valid grid points and allocates memory for the ghost points internally to apply the boundary conditions specified as bc. Note that the function supports an optional argument out, which if given should provide space for the valid output array without the ghost cells. The result of the operator is then written into this output array.
The function also accepts an optional parameter args, which is forwarded to set_ghost_cells. This allows setting boundary conditions based on external parameters, like time.
- Returns:
the function that applies the operator. This function has the signature (arr: NumericArray, out: NumericArray = None, args=None).
- Return type:
callable
- Parameters:
grid (GridBase)
operator (str | OperatorInfo)
bcs (BoundariesBase)
dtype (DTypeLike | None)
- make_operator_no_bc(grid, operator, *, dtype=None, **kwargs)[source]
Return a compiled function applying an operator without boundary conditions.
A function that takes the discretized full data as an input and an array of valid data points to which the result of applying the operator is written.
Note
The resulting function does not check whether the ghost cells of the input array have been supplied with sensible values. It is the responsibility of the user to set the values of the ghost cells beforehand. Use this function only if you absolutely know what you’re doing. In all other cases,
make_operator()is probably the better choice.- Parameters:
grid (
GridBase) – Grid for which the operator is neededoperator (str) – Identifier for the operator. Some examples are ‘laplace’, ‘gradient’, or ‘divergence’. The registered operators for this grid can be obtained from the
operatorsattribute.dtype (numpy dtype) – The data type of the field.
**kwargs – Specifies extra arguments influencing how the operator is created.
- Returns:
the function that applies the operator. This function has the signature (arr: NumericArray, out: NumericArray), so they out array need to be supplied explicitly.
- Return type:
callable
- make_outer_prod_operator(field)[source]
Return operator calculating the outer product between two fields.
This supports typically only supports products between two vector fields.
- Parameters:
field (
DataFieldBase) – Field for which the outer product is defined- Returns:
Function that takes two instance of native data arrays, which contain the discretized data of the two operands. An optional third argument can specify the output array to which the result is written.
- Return type:
BinaryOperatorImplType
- make_stepper(solver, state)[source]
Create a field-based stepping function for a given solver.
- Parameters:
solver (
SolverBase) – The solver instance, which determines how the stepper is constructedstate (
FieldBase) – An example for the state from which the grid and other information can be extracted
- Returns:
Function that can be called to advance the state from time t_start to time t_end.
- Return type:
- make_valid_data_setter(grid, rank)[source]
Create a function to set the valid part of a full data array.
- Parameters:
grid (
GridBase) – Grid for which the data setter is definedrank (int) – Rank of the data represented on the grid
- Returns:
Takes two numpy arrays, setting the valid data in the first one, using the second array. The arrays need to be allocated already and they need to have the correct dimensions, which are not checked. If bcs are given, a third argument is allowed, which sets arguments for the BCs.
- Return type:
callable
- native_to_numpy(value: TNativeArray) ndarray[Any, dtype[number]][source]
- native_to_numpy(value: TValue) TValue
Convert native values to numpy representation.
- numpy_to_native(value: ndarray[Any, dtype[number]]) TNativeArray[source]
- numpy_to_native(value: TValue) TValue
Convert values from numpy to native representation.
- classmethod register_operator(grid_cls, name, factory_func=None, *, rank_in=0, rank_out=0)[source]
Register an operator for a particular grid.
Example
The method can either be used directly:
BackendClass.register_operator(grid_class, "operator", make_operator)
or as a decorator for the factory function:
@BackendClass.register_operator(grid_class, "operator") def make_operator(grid: GridBase): ...
- Parameters:
grid_cls (
GridBase) – Grid class for which the operator is definedname (str) – The name of the operator to register
factory_func (callable) – A function with signature
(grid: GridBase, **kwargs), which takes a grid object and optional keyword arguments and returns an implementation of the given operator. This implementation is a function that takes andarrayof discretized values as arguments and returns the resulting discretized data in andarrayafter applying the operator.rank_in (int) – The rank of the input field for the operator
rank_out (int) – The rank of the field that is returned by the operator
- get_backend(backend)[source]
Return backend specified by string of instance.
- Parameters:
backend (str or
BackendBase) – Backend specified by name given as a string. If the string contains a colon, the first part determines the backend, whereas the second part can be used to convey additional information. For example,torch:cudamay load a torch backend and use a cuda device. As a special case, we also allow full backend objects, which are simply returned. This is a simple way to allow providing full backend objects in places where we otherwise would expect a backend name.- Return type:
Subpackages:
- 4.1.1 pde.backends.jax package
- 4.1.2 pde.backends.numba package
- 4.1.3 pde.backends.numba_mpi package
- 4.1.4 pde.backends.numpy package
- 4.1.5 pde.backends.scipy package
- 4.1.6 pde.backends.torch package