Skip to main content

Arbitrary precision ball arithmetic (interval arithmetic) dtype in NumPy

Project description

numpy-flint-arb

CI Status Documentation Status Test coverage percentage

uv Ruff pre-commit

PyPI Version Supported Python versions License


Documentation: https://numpy-flint-arb.readthedocs.io

Source Code: https://github.com/34j/numpy-flint-arb


Arbitrary precision ball arithmetic (interval arithmetic) dtype in NumPy

Installation

Install this via pip (or your favourite package manager):

pip install numpy-flint-arb

Usage

Import numpy_flint_arb.np instead of numpy:

from numpy_flint_arb import np

A = np.random.normal(size=(2, 2))
b = np.random.normal(size=(2,))
x = np.linalg.solve(A, b)
b_approx = A @ x
assert np.all(np.contains(b_approx, b))

asarray() and Input Check

To avoid mixing ordinary floats like float or np.float, flarray for arb, acb only accepts integers, arb or acb and flarray for arf only accepts integers and arf, arb.

To relax this, allow_input() may be used:

import pytest
from numpy_flint_arb import allow_input
from flint import arb, arf

# arb array
with pytest.raises(Exception):
    np.asarray(0.5, dtype=arb)
with pytest.raises(Exception):
    with allow_input(float=True):
        np.asarray(0.5, dtype=arb)
with allow_input(interval=True, float=True):
    np.asarray(0.5, dtype=arb)

# arf array
with pytest.raises(Exception):
    np.asarray(0.5, dtype=arf)
with allow_input(float=True):
    np.asarray(0.5, dtype=arf)
with allow_input(interval=True, float=True):
    np.asarray(0.5, dtype=arf)

Note that allow_input() does not affect for arf(), arb(), acb() constructors, but only for np.asarray() and flarray().

str input

One can input str to asarray(). If dtype is not specified, it will be automatically detected as arb. However, specifying dtype explicitly is recommended.

asarray(dtype=acb)

asarray() does not support separated input for real and imaginary parts.

Do the following instead, as acb(1j) is exact.

from flint import arb, acb
from numpy_flint_arb import np

with pytest.raises(Exception):
    # python-flint does not support single argument str input for acb
    np.asarray("[0.5 +/- 0.001] + [0.5 +/- 0.001]j", dtype=acb)
with pytest.raises(Exception):
    # This is inexact and raises an error without allow_input()
    np.asarray(0.5 + 0.5j, dtype=acb)
with pytest.raises(Exception):
    # Mixing complex and arb is not supported by python-flint
    np.asarray("0.5 +/- 0.001", dtype=arb) + 1j * np.asarray("0.5 +/- 0.001", dtype=arb)
>>> # This is possible but not recommended
>>> np.asarray("0.5 +/- 0.001", dtype=arb) + 1j * np.asarray("0.5 +/- 0.001", dtype=acb)
flarray([0.50 +/- 1.01e-3] + [0.50 +/- 1.01e-3]j,
        dtype=<class 'flint.types.acb.acb'>)
>>> # Recommended
>>> np.asarray("0.5 +/- 0.001", dtype=arb) + acb(1j) * np.asarray("0.5 +/- 0.001", dtype=arb)
flarray([0.50 +/- 1.01e-3] + [0.50 +/- 1.01e-3]j,
        dtype=<class 'flint.types.acb.acb'>)

fft submodule

Some fft functions are implemented.

>>> np.fft.fft(np.arange(1, stop=4))
flarray([6.00000000000000,
         -1.50000000000000 + [0.86602540378444 +/- 1.96e-15]j,
         -1.50000000000000 + [-0.86602540378444 +/- 1.96e-15]j],
        dtype=<class 'flint.types.acb.acb'>)

linalg submodule

Some linalg functions are implemented.

>>> A = np.asarray([[1, 2], [3, 4]], dtype=arb)
>>> np.linalg.inv(A)
flarray([[[-2.00000000000000 +/- 1.63e-15],
          [1.00000000000000 +/- 7.41e-16]],
         [[1.50000000000000 +/- 9.44e-16],
          [-0.500000000000000 +/- 4.17e-16]]],
        dtype=<class 'flint.types.arb.arb'>)

Internally 2 functions tomat() and frommat() are added to treat flarray as array of arb_mat / acb_mat, so that we can perform matrix operations like np.linalg.solve on flarray.

random submodule

Since python-flint does not support random number generation, the random module just uses np.random. Therefore, the return values may not be random up to the precision of arb, acb.

special submodule

Some scipy.special functions are implemented.

>>> np.special.jv(np.arange(2), arb(1))
flarray([[0.765197686557966 +/- 6.11e-16],
         [0.440050585744933 +/- 5.55e-16]],
        dtype=<class 'flint.types.acb.acb'>)

What it does

  • This package adds a flarray which subclasses ndarray in order to

    • Override __array_namespace__ to numpy_flint_arb.np
    • Override dtype to return newly added _fl_dtype private attribute, since the actual internal dtype object cannot be overridden.
    • Override __array_finalize__ as recommended by the NumPy docs to return flarray with proper _fl_dtype instead of ndarray after Numpy operations.
  • Partially supports linalg and (scipy.)special functions.

  • Does not perform any parallelization to avoid complexity and to fully utilize the great python-flint library

    • Using arb_series and acb_series may be faster for additions but this is too hacky.
    • Defining custom dtype is way too complicated
    • Writing C extension would be theoretically also possible but is still too complicated.
  • Does not support in operator since it tries to convert the return value to bool. Use newly added np.contains(x, y) and np.overlaps(x, y) instead.

  • Currently dtype of resulting flarray is inferred from type(output.flat[0]). If the output array is empty or its element type is inconsistent, the result will be inaccurate.

    >>> (np.asarray([0], dtype=arb) * acb(1j)).dtype
    <class 'flint.types.acb.acb'>
    >>> (np.asarray([], dtype=arb) * acb(1j)).dtype
    <class 'flint.types.arb.arb'>
    

Contributors ✨

Thanks goes to these wonderful people (emoji key):

34j
34j

💻 🤔 📖

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

Copier

This package was created with Copier and the browniebroke/pypackage-template project template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

numpy_flint_arb-1.5.3.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

numpy_flint_arb-1.5.3-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file numpy_flint_arb-1.5.3.tar.gz.

File metadata

  • Download URL: numpy_flint_arb-1.5.3.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for numpy_flint_arb-1.5.3.tar.gz
Algorithm Hash digest
SHA256 23537085bbacd932286fe19ef475e5346ac2ef1439ed1c9f1274af94a069b70e
MD5 3f1cd570f51ee3f2961544de38c1b5a0
BLAKE2b-256 943930be3d6bb7430f651f8675bab9de469838699c3ea09cee5c4ffaac18bc4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for numpy_flint_arb-1.5.3.tar.gz:

Publisher: ci.yml on 34j/numpy-flint-arb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file numpy_flint_arb-1.5.3-py3-none-any.whl.

File metadata

  • Download URL: numpy_flint_arb-1.5.3-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for numpy_flint_arb-1.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 30485c4911cfa9ff2164f72d1f65f8ea626bfd32be4449ec08eccfff89447e10
MD5 f5d42ee72e54e203bfe4147926aeb7bf
BLAKE2b-256 6c6f32a5ccdfc7a68db6b214c1fe387fe5c86a4cf32d288f3d2c65599a006164

See more details on using hashes here.

Provenance

The following attestation bundles were made for numpy_flint_arb-1.5.3-py3-none-any.whl:

Publisher: ci.yml on 34j/numpy-flint-arb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page