HighFive
HighFive copied to clipboard
HighFive - Header-only C++ HDF5 interface
Has the time come that we should make the change `master` -> `main`? It's starting to become one a few projects I participate on that is still on `master`
Running this code returns a template resolution error. ```cpp int main() { const HighFive::File file = HighFive::File("example.h5", HighFive::File::ReadOnly); auto A = H5Easy::load(file, "/example", {0, 1}) } ``` Error output: ```...
I have an `std::vector` already allocated and I want to populate the values of that vector with data coming from a dataset. Right now, to populate, I am doing something...
Recently a version was released which broke spack builds. We should extend the CI to build the HighFive spack package. (to be elaborated)
We should consider CI which checks that the version numbers are correct. Context: * Recently, two bugs related to version infomation where found. See, #715.
Since we recently had an issue where we allowed names reserved for macros to be used in HighFive, e.g. `DEBUG` or `INFO`, it would make sense to investigate if there's...
**Describe the bug** I have a compound that includes `std::string`. Then I create an array (`std::vector`) and try to write. Then `HDF5` gets segmentation fault: ``` Program received signal SIGSEGV,...
**Describe the bug** While building HighFive for inclusion in [NeuroFedora](https://pagure.io/neuro-sig/NeuroFedora/issue/440), we're seeing builds fail on 32 bit architectures: i686 and armv7hl **To Reproduce** Steps to reproduce the behavior: Attempt to...
**Is your feature request related to a problem? Please describe.** The HDF5 library is close to releasing (in HDF5-1.13.3) "multi-dataset i/o", a feature allowing users to describe or schedule accesses...
**Is your feature request related to a problem? Please describe.** The HDF5 standard contains an `Array` type that is currently not supported by HighFive. See this figure from the User's...