-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use ivf_pq and ivf_flat from raft #5119
Conversation
Added breaking label due to the removal of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Codecov ReportBase: 69.63% // Head: 69.12% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #5119 +/- ##
================================================
- Coverage 69.63% 69.12% -0.51%
================================================
Files 192 192
Lines 12523 12333 -190
================================================
- Hits 8720 8525 -195
- Misses 3803 3808 +5
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
/merge |
We are removing the faiss ANN code in rapidsai/raft#1121, in favour of using the ivf_flat and ivf_pq implementations included with raft. After this change, RAFT can be updated to remove the faiss ANN methods - which is implemented in rapidsai/raft#1121 Note that this removes the `ivf_sq` option , since there is no corresponding implementation in raft. Closes rapidsai#5131 Authors: - Ben Frederickson (https://github.com/benfred) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai#5119
We are removing the faiss ANN code in rapidsai/raft#1121, in favour of
using the ivf_flat and ivf_pq implementations included with raft.
After this change, RAFT can be updated to remove the faiss ANN methods - which is implemented in
rapidsai/raft#1121
Note that this removes the
ivf_sq
option , since there is no corresponding implementation in raft.Closes #5131