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
This PR aims to improve the workflow when dealing with large datasets. When experimenting with different versions of the knn-graph, we might want to construct indices with the same dataset (see #1435 for further discussion).
If the dataset is already in device memory (and rows are properly aligned / padded), then we only store a reference to the dataset, therefore multiple indices can refer to the same dataset. Similarly, when `knn_graph` is a device array, then store only a reference.
Additionally, this PR adds `update_dataset` and `update_graph` methods to the index.
Closes#1479
Authors:
- Tamas Bela Feher (https://github.com/tfeher)
Approvers:
- Corey J. Nolet (https://github.com/cjnolet)
URL: #1494
Is your feature request related to a problem? Please describe.
When data / graph is in device memory, consider just storing a reference in the index for the data. See discussion #1375 (comment)
Tracker #1392
The text was updated successfully, but these errors were encountered: