You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If (N, 4)-dimensional numpy array gets written to HdfEventWriter.pmu, instead of converting the columns to the named fields, each column gets broadcasted over the x, y, z, e elements, resulting in a 4x increase in disk usage.
If (N, 4)-dimensional numpy array gets written to
HdfEventWriter.pmu
, instead of converting the columns to the named fields, each column gets broadcasted over the x, y, z, e elements, resulting in a 4x increase in disk usage.That is, from this:
what gets stored is this
This is an obvious bug! Patch it by converting the (N, 4) array as a view compatible with the HDF5 dataset.
The text was updated successfully, but these errors were encountered: