HDF5.jl
HDF5.jl copied to clipboard
Save and load data in the HDF5 file format from Julia
After https://github.com/JuliaIO/HDF5.jl/pull/984. Per https://github.com/JuliaIO/HDF5.jl/pull/984#issuecomment-1204353657.
It is important to be able to read and write from general `IO` objects rather than just files. This is really important in case you need to stash files over...
Clang.jl is able to read C headers and automatically generate Julia bindings. Following the instructions at https://juliainterop.github.io/Clang.jl/stable/ , I have generated a module `LibHDF5`. As-is, I believe this is useful...
When running long jobs, I'm occasionally running into this traces like this. What I think is happening is that the finalizer is running to close out a property while another...
In working through #979 I discovered that our `H5O_info[1]_t` definition is incorrect. https://cs.github.com/HDFGroup/hdf5/blob/c064d3481b582653c1e0d0043a17527fd73e8c4d/src/H5Opublic.h#L1690 ```C typedef struct H5O_info1_t { unsigned long fileno; /**< File number that object is located in */...
It looks like `haskey(::Union{Group,File}, ::String)` has some edge cases that aren't currently well-handled: ```julia using HDF5 filename = tempname() f = h5open(filename, "w") f["aa"] = 1 f["bb/cc"] = 2 #...
HDF5.jl currently provides some options (`COMPLEX_SUPPORT`, `COMPLEX_FIELD_NAMES`) which are configured globally: in general, global configuration is not a great idea, as two packages which depend on HDF5 may want to...
There were significant changes to the reference API in 1.12: https://portal.hdfgroup.org/display/HDF5/Update+to+References This has some nice things, like you don't need to supply the file to dereference. However one significant change...
Hi, thank you for this nice package! Today I saw that vary `blosc `does not seem to make a difference, two weeks ago vary `blosc `had an impact. Regards, Stefan...
read_attribute(attr::Attribute, memtype::Datatype, buf) should be read_attribute! https://github.com/JuliaIO/HDF5.jl/blob/78903b674ae53369db500b6081a5caf0415174d2/src/attributes.jl#L70