python-blosc2 icon indicating copy to clipboard operation
python-blosc2 copied to clipboard

Results 60 python-blosc2 issues
Sort by recently updated
recently updated
newest added

Hi, I was trying to use ZFP with python-blosc2 with a simple example as follow : ``` a = np.arange(1e6, dtype="int32") b = blosc2.pack_array2(a, cparams={"codec": blosc2.Codec.ZFP_RATE, "clevel": 5, "typesize": 4"})...

I'm facing issues when creating a simple codec that just makes a copy of the data to get familiar with Blosc's registering machinery. I attach the code: ```python import blosc2...

We are facing issues when using multithreading in combination with postfilters (with prefilters probably too). The next simple script hangs forever (probaly due to some pthread lock waiting to be...

There are two potential issues in the blosc2 Cython extension: 1. The header written by the `compress2` function is not deterministic because the default `filters` and `filters_meta` fields are defined...

I am currently in the process of upgrading from blosc v1 to blosc v2 and facing some issues. I use blosc to compress many binary files (numpy arrays) and I...

Right now, there is only one [GHA script](https://github.com/Blosc/python-blosc2/blob/main/.github/workflows/cibuildwheels.yml), but it would be better to have two: 1) One that triggers on regular commits (will run tests, flake8...) 2) One that...

enhancement

Right now, whenever a a field is retrieved from a Proxy object via `Proxy.fields[field_name]`, one has to [manually fetch](https://github.com/Blosc/python-blosc2/blob/main/tests/ndarray/test_proxy.py#L102) data prior to that. This should be done automatically, without any...

Attempt to switch to sckit-build-core. Address https://github.com/Blosc/python-blosc2/issues/223. @LecrisUT, tell me if you have recommendations.

It is recommended that projects migrate from `scikit-build` to `scikit-build-core` when possible. Most development is focused there and it is a very CMake friendly and pythonic build system. For now...