Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python312-lazyarray-0.6.0-2.1 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python312-lazyarray Distribution: openSUSE Tumbleweed
Version: 0.6.0 Vendor: openSUSE
Release: 2.1 Build date: Wed Mar 19 11:50:50 2025
Group: Unspecified Build host: reproducible
Size: 99530 Source RPM: python-lazyarray-0.6.0-2.1.src.rpm
Packager: https://bugs.opensuse.org
Url: http://github.com/NeuralEnsemble/lazyarray/
Summary: Lazily-evaluated numerical array class, compatible with NumPy arrays
lazyarray is a Python package that provides a lazily-evaluated numerical array
class, larray, based on and compatible with NumPy arrays.

Lazy evaluation means that any operations on the array (potentially including
array construction) are not performed immediately, but are delayed until
evaluation is specifically requested. Evaluation of only parts of the array is
also possible.

Use of an larray`can potentially save considerable computation time
and memory in cases where:

* arrays are used conditionally (i.e. there are cases in which the array is
  never used)
* only parts of an array are used (for example in distributed computation,
  in which each MPI node operates on a subset of the elements of the array)

Provides

Requires

License

BSD-3-Clause

Changelog

* Wed Mar 19 2025 Matej Cepl <mcepl@cepl.eu>
  - Skip test_create_with_sparse_array test
    (gh#NeuralEnsemble/lazyarray#24).
*