When I added the append parameter to DDR3.save_data, I accidentally created a bug that caused newly saved data to be shifted such that it overlapped with previous data. This fixes the issue by resizing the existing h5 dataset to accommodate the incoming first chunk when append=True.
When I added the
append
parameter toDDR3.save_data
, I accidentally created a bug that caused newly saved data to be shifted such that it overlapped with previous data. This fixes the issue by resizing the existing h5 dataset to accommodate the incoming first chunk whenappend=True
.