You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not supporting compatibility with dask arrays as being array like for especially for Zarr persistence prevents chaining large computations and saving them gradually to zarr.
Version and installation information
Please provide the following:
Value of numcodecs.__version__ : 0.13.1
Version of Python interpreter : 3.12.3 (main, Sep 11 2024, 14:17:37) [GCC 13.2.0]
Operating system (Linux/Windows/Mac) : Linux
How NumCodecs was installed (e.g., "using pip into virtual environment", or "using conda") : using uv into virtualenv
Also, if you think it might be relevant, please provide the output from pip list or conda list depending on which was used to install NumCodecs.
The text was updated successfully, but these errors were encountered:
whatnick
changed the title
Dask arrays are not recognized as is_ndarray_like
Dask arrays are not recognized as array in is_ndarray_like
Oct 31, 2024
dask.array is not numpy-like: it generally doesn't have data in memory. However, when you act on the array, the operation is broken up to act on its partitions, so that within a task, you see only a real numpy array. This is exactly how to_zarr works, including partition encoding via numcodecs.
Do you have an actual workflow where you have an issue?
Minimal, reproducible code sample, a copy-pastable example if possible
Problem description
Not supporting compatibility with dask arrays as being array like for especially for Zarr persistence prevents chaining large computations and saving them gradually to zarr.
Version and installation information
Please provide the following:
numcodecs.__version__
: 0.13.1Also, if you think it might be relevant, please provide the output from
pip list
orconda list
depending on which was used to install NumCodecs.The text was updated successfully, but these errors were encountered: