sparse icon indicating copy to clipboard operation
sparse copied to clipboard

Sparse multi-dimensional arrays for the PyData ecosystem

Results 76 sparse issues
Sort by recently updated
recently updated
newest added

I was going through the `GCXS` code trying to fix bugs when I came across a few places where `compressed_axes` was being set to `None`. That, in my opinion, should...

discussion

Numba doesn't support numpy 1.21 yest so perhaps the requirements need updating to restrict numpy to < 1.21

type:upstream

I was recommended to ask this on the dask github issues threads [here](https://github.com/dask/dask/issues/5373). Would it be possible to implement a Cholesky Decomposition function for Sparse matrices? I understand this may...

type:enhancement

:eyes: Some source code analysis tools can help to find opportunities for improving software components. :thought_balloon: I propose to [increase the usage of augmented assignment statements](https://docs.python.org/3/reference/simple_stmts.html#augmented-assignment-statements "Augmented assignment statements") accordingly....

type:enhancement

**Is your feature request related to a problem? Please describe.** Creating a dask array from a `SparseArray`, if chunks are not given, dask will automatically rechunk the data based on...

type:enhancement

Added hypothesis tests. The sparse test suite now has both pytest and hypothesis. See #163

**Describe the bug** `GCXS` arrays cannot be multiplied with any scalar value. **To Reproduce** ```python >>> import sparse; import numpy as np >>> s1=sparse.random((), format='gcxs') >>> s2=np.random.rand() >>> s1*s2 Traceback...

type:bug

Hi there, I am using a homemade tensor class in my model code together with numba functions for tensor products. If I understand well, sparse also use numba to accelerate...

type:support

Hi, We encountered a serious issue when running jupyter notebook code with the support of sparse library. Can someone help? Thanks! **Describe the bug** In a Qiskit 0.30 conda virtual...

type:upstream

**Describe the bug** Big-endian floats (and maybe others) are not supported by numba, which leads to `TypingError` on some sparse operations. **To Reproduce** ```python3 import numpy as np import sparse...

type:upstream