hdf5-blosc
hdf5-blosc copied to clipboard
Filter for HDF5 that uses Blosc
I would be interested in seeing this plugin updated to work with c-blosc2 code.
Following the installation instructions, when I run `make`, the build stops with the error: ``` [ 60%] Building C object CMakeFiles/blosc_filter_shared.dir/src/blosc_filter.c.o make[2]: *** No rule to make target 'blosc/lib/libblosc.so', needed...
`h5repack --filter UD=32001,7,0,0,0,0,9,0,0 input.h5 output_blosc.h5` I'm getting this error: > h5repack error: could not copy data to: output_blosc.h5 I can successfully use the filter from c++ code. I've upgraded to...
libH5Zblosc.so generated by cmake build depends on libblosc.so built from github source code as indicated below in CMakeLists.txt. https://github.com/Blosc/hdf5-blosc/blob/bd8ee59708f366ac561153858735165d3a543b18/CMakeLists.txt#L25-L30 But running cmake installation command ( `cmake --build . --target install`)...
I'm trying to build this against an existing Blosc library. I'm not that familiar with Cmake, but I think I need to set `BLOSC_INSTALL_DIR` to be the installation prefix. However...
Hi, I wrote a small cython wrapper for this. How could I publish this? Should I open a merge request here or create a new repo for this?
Hi, is there a registered filter option to set the number of threads used by blosc from HDF5? Something like the `blosc_set_nthreads` call? I cannot find it in the `blosc_filter.c`...
This PR replaces calls to malloc() and free() with H5allocate_memory() and H5free_memory(). This is the correct mechanism according to HDF5 Group. It also simplifies blosc_plugin.c, removes blosc_plugin.h, and does some...
I'm using hdf5-1.10.5 on windows with installed hdf5plugins-1.10.5 and tried to set the env BLOSC_NTHREADS = 10 but only one core is used. I want to compress images with CHUNK=1x140x160....