-
Notifications
You must be signed in to change notification settings - Fork 109
Fix IVF-PQ helper functions #116
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
Fix IVF-PQ helper functions #116
Conversation
@@ -1,9 +1,9 @@ | |||
/* | |||
* raft::copyright (c) 2022-2024, NVIDIA CORPORATION. | |||
* Copyright (c) 2022-2024, NVIDIA CORPORATION. |
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.
I didn't notice this one before. That's a great search and replace snafu. This one just made my day.
Co-authored-by: Corey J. Nolet <cjnolet@gmail.com>
/** | ||
* @} | ||
*/ | ||
}; // namespace codepacker |
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.
I think there's a few functions below that are part of the codepackager also
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.
We should do this as a follow-on just to make sure we can get the main bits merged.
@lowener I was otherwise thinking we should move the additional codepacker functions into codepacker namespace in a follow up, but since this PR requires fixing merge conflicts anyways, I think we should just go ahead and do that move here. |
/merge |
Some IVF-PQ helper functions needed for FAISS were missing. Authors: - Micka (https://github.com/lowener) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai/cuvs#116
Some IVF-PQ helper functions needed for FAISS were missing.