Misc ToolsΒΆ
Derivative TakerΒΆ
- class sumpy.derivative_taker.ExprDerivativeTaker(expr, var_list, rscale=1, sac=None)[source]ΒΆ
Facilitates the efficient computation of (potentially) high-order derivatives of a given
sympy
expression expr while attempting to maximize the number of common subexpressions generated. This class defines the interface and realizes a baseline implementation. More specialized implementations may offer better efficiency for special cases. .. automethod:: diff
- class sumpy.derivative_taker.LaplaceDerivativeTaker(expr, var_list, rscale=1, sac=None)[source]ΒΆ
Specialized derivative taker for Laplace potential.
- class sumpy.derivative_taker.RadialDerivativeTaker(expr, var_list, rscale=1, sac=None)[source]ΒΆ
Specialized derivative taker for radial expressions.
- class sumpy.derivative_taker.HelmholtzDerivativeTaker(expr, var_list, rscale=1, sac=None)[source]ΒΆ
Specialized derivative taker for Helmholtz potential.
- class sumpy.derivative_taker.DifferentiatedExprDerivativeTaker(taker: ExprDerivativeTaker, derivative_coeff_dict: dict[tuple[int, ...], Any])[source]ΒΆ
Implements the
ExprDerivativeTaker
interface for an expression that is itself a linear combination of derivatives of a base expression. To take the actual derivatives, it makes use of an underlying derivative taker taker.- takerΒΆ
- A :class:`ExprDerivativeTaker` for the base expression.
- derivative_coeff_dictΒΆ
- A dictionary mapping a derivative multi-index to a coefficient.
- The expression represented by this derivative taker is the linear
- combination of the derivatives of the expression for the
- base expression.
Symbolic ToolsΒΆ
- class sumpy.symbolic.Basic[source]ΒΆ
The expression base class for the βheavy-dutyβ computer algebra toolkit in use. Either
sympy.core.basic.Basic
orsymengine.Basic
.
- class sumpy.symbolic.SpatialConstant(name: str)[source]ΒΆ
A symbolic constant to represent a symbolic variable that is spatially constant.
For example the wave-number \(k\) in the setting of a constant-coefficient Helmholtz problem. For use in
sumpy.kernel.ExpressionKernel.expression
. Any variable occurring there that is not aSpatialConstant
is assumed to have a spatial dependency.- prefix: ClassVar[str] = '_spatial_constant_'ΒΆ
Prefix used in code generation for variables of this type.
- classmethod from_sympy(expr: Symbol) SpatialConstant [source]ΒΆ
Convert
sympy
expression to a constant.
ToolsΒΆ
Multi-index HelpersΒΆ
Symbolic HelpersΒΆ
- class sumpy.tools.KernelComputation(ctx: Any, target_kernels: list[Kernel], source_kernels: list[Kernel], strength_usage: list[int] | None = None, value_dtypes: list[numpy.dtype[Any]] | None = None, name: str | None = None, device: Any | None = None)[source]ΒΆ
Common input processing for kernel computations.
- nameΒΆ
- target_kernelsΒΆ
- source_kernelsΒΆ
- strength_usageΒΆ
- sumpy.tools.reduced_row_echelon_form(m, atol=0)[source]ΒΆ
Calculates a reduced row echelon form of a matrix m.
- Parameters:
m β a 2D
numpy.ndarray
or a list of lists or a sympy Matrixatol β absolute tolerance for values to be considered zero
- Returns:
reduced row echelon form as a 2D
numpy.ndarray
and a list of pivots
- sumpy.tools.nullspace(m, atol=0)[source]ΒΆ
Calculates the nullspace of a matrix m.
- Parameters:
m β a 2D
numpy.ndarray
or a list of lists or a sympy Matrixatol β absolute tolerance for values to be considered zero
- Returns:
nullspace of m as a 2D
numpy.ndarray
FFTΒΆ
- sumpy.tools.fft(seq, inverse=False, sac=None)[source]ΒΆ
Return the discrete fourier transform of the sequence seq. seq should be a python iterable with tuples of length 2 corresponding to the real part and imaginary part.
- sumpy.tools.fft_toeplitz_upper_triangular(first_row, x, sac=None)[source]ΒΆ
Returns the matvec of the Toeplitz matrix given by the first row and the vector x using a Fourier transform
- class sumpy.tools.FFTBackend(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]ΒΆ
-
- pyvkfft = 1ΒΆ
FFT backend based on the vkFFT library.
- sumpy.tools.get_opencl_fft_app(queue: pyopencl.CommandQueue, shape: tuple[int, ...], dtype: numpy.dtype[Any], inverse: bool) Any [source]ΒΆ
Setup an object for out-of-place FFT on with given shape and dtype on given queue.
- sumpy.tools.run_opencl_fft(fft_app: tuple[Any, FFTBackend], queue: pyopencl.CommandQueue, input_vec: Any, inverse: bool = False, wait_for: list[pyopencl.Event] | None = None) tuple[pyopencl.Event, Any] [source]ΒΆ
Runs an FFT on input_vec and returns a
MarkerBasedProfilingEvent
that indicate the end and start of the operations carried out and the output vector. Only supports in-order queues.
ProfilingΒΆ
- class sumpy.tools.AggregateProfilingEvent(events)[source]ΒΆ
An object to hold a list of events and provides compatibility with some of the functionality of
pyopencl.Event
. Assumes that the last event waits on all of the previous events.
- class sumpy.tools.MarkerBasedProfilingEvent(*, end_event, start_event)[source]ΒΆ
An object to hold two marker events and provides compatibility with some of the functionality of
pyopencl.Event
.
Array ContextΒΆ
- class sumpy.array_context.PyOpenCLArrayContext(queue: pyopencl.CommandQueue, allocator: pyopencl.tools.AllocatorBase | None = None, wait_event_queue_length: int | None = None, force_device_scalars: bool | None = None)[source]ΒΆ
InstallationΒΆ
This command should install sumpy
:
pip install sumpy
You may need to run this with sudo. If you donβt already have pip, run this beforehand:
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
python get-pip.py
For a more manual installation, download the source, unpack it, and say:
python setup.py install
In addition, you need to have numpy
installed.
UsageΒΆ
Environment variablesΒΆ
Name |
Purpose |
---|---|
SUMPY_FORCE_SYMBOLIC_BACKEND |
Symbolic backend control, see Symbolic backends |
SUMPY_NO_CACHE |
If set, disables the on-disk cache |
SUMPY_NO_OPT |
If set, disables performance-oriented |
Symbolic backendsΒΆ
sumpy
supports two symbolic backends: sympy and SymEngine. To use the
SymEngine backend, ensure that the SymEngine library and the SymEngine Python bindings are installed.
By default, sumpy
prefers using SymEngine but falls back to sympy if it
detects that SymEngine is not installed. To force the use of a particular
backend, set the environment variable SUMPY_FORCE_SYMBOLIC_BACKEND to
symengine or sympy.
User-visible ChangesΒΆ
Version 2016.1ΒΆ
Note
This version is currently under development. You can get snapshots from sumpyβs git repository
Initial release.
LicenseΒΆ
sumpy
is licensed to you under the MIT/X Consortium license:
Copyright (c) 2012-16 Andreas KlΓΆckner
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the βSoftwareβ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED βAS ISβ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Frequently Asked QuestionsΒΆ
The FAQ is maintained collaboratively on the Wiki FAQ page.
AcknowledgmentsΒΆ
Work on meshmode was supported in part by
the US National Science Foundation under grant numbers DMS-1418961, DMS-1654756, SHF-1911019, and OAC-1931577.
AK also gratefully acknowledges a hardware gift from Nvidia Corporation.
The views and opinions expressed herein do not necessarily reflect those of the funding agencies.