I've been working with HDF5 files with C and Matlab, both using the same way for reading from and writing to datasets:
- open file with
h5f - open dataset with
h5d - select space with
h5s
and so on...
But now I'm working with Python, and with its h5py library I see that it has two ways to manage HDF5: high-level and low-level interfaces. And with the former it takes less lines of code to get the information from a single variable of the file.
Is there any noticeable loss of performance when using the high-level interface?
For example when dealing with a file with many variables inside, and we must read just one of them.