Tagged Questions

1
vote
2answers
788 views

HDF5 : storing NumPy data

when I used NumPy I stored it's data in the native format *.npy. It's very fast and gave me some benefits, like this one I could read *.npy from C code as simple binary data(I mean *.npy are ...
0
votes
1answer
55 views

Read HDF5 monodimensional compound dataset in C structure in parallel

I have a very simple compound dataset, about 1 million rows of a compound datatype: 1 long, 3 doubles. I would like to read it in parallel with MPI using a collective call, equally distributed on ...
0
votes
1answer
838 views

Delete or update a dataset in HDF5?

I would like to programatically change the data associated with a dataset in an HDF5 file. I can't seem to find a way to either delete a dataset by name (allowing me to add it again with the modified ...