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
Using a DatasetBuilder to extend an already-assembled Dataset should be able to allow the initial data set's storage to be reused.
Right now, the code does not do that very well, because MatrixRelationshipSet._init_structures calls combine_chunks on the table. If my memory is correct, this was to simplify some Rust optimizations.
To improve memory use, we should remove that combine_chunks call and fix whatever breaks to enable data reuse.
We should also add more tests using data set extension to make sure the code is well-exercised.
The text was updated successfully, but these errors were encountered:
Using a
DatasetBuilder
to extend an already-assembledDataset
should be able to allow the initial data set's storage to be reused.Right now, the code does not do that very well, because
MatrixRelationshipSet._init_structures
callscombine_chunks
on the table. If my memory is correct, this was to simplify some Rust optimizations.To improve memory use, we should remove that
combine_chunks
call and fix whatever breaks to enable data reuse.We should also add more tests using data set extension to make sure the code is well-exercised.
The text was updated successfully, but these errors were encountered: