-
Notifications
You must be signed in to change notification settings - Fork 126
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
Make the HitQueue size more appropriate for exact search #1549
Make the HitQueue size more appropriate for exact search #1549
Conversation
8eec69c
to
da6c5f1
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1549 +/- ##
============================================
- Coverage 85.15% 84.90% -0.26%
+ Complexity 1371 1365 -6
============================================
Files 172 172
Lines 5566 5566
Branches 546 546
============================================
- Hits 4740 4726 -14
- Misses 596 607 +11
- Partials 230 233 +3 ☔ View full report in Codecov by Sentry. |
@bugmakerrrrrr does setting higher values of hitqueue creates any issue or this is more of an optimization? Otherwise code looks good to me. |
just an optimization |
@bugmakerrrrrr can you resolve the conflicts so that we can merge it to 2.13 The code freeze it today. |
@navneet1v I was able to resolve conflict - interestingly, I was able to add to @bugmakerrrrrr branch without issue, which seems somewhat risky: bugmakerrrrrr@32a477d. |
Code freeze for 2.13 is already done. I can still see conflicts. Lets resolve this and merge the code. We can release this in 2.14. |
32a477d
to
ae8802e
Compare
@bugmakerrrrrr can you fix the GH actions so that we can merge the code. As there is no comments on the code, |
Signed-off-by: panguixin <[email protected]>
ae8802e
to
a1becdd
Compare
@navneet1v it appears that the failure of GH actions is not connected to this PR |
Started a rerun.. |
@navneet1v can we merge this? |
@jmazanec15 can you approve the PR and we can merge this PR then. |
Signed-off-by: panguixin <[email protected]> (cherry picked from commit c861966)
Signed-off-by: panguixin <[email protected]> (cherry picked from commit c861966) Co-authored-by: panguixin <[email protected]>
Description
Currently, when performing KNN exact search, we consistently set the HitQueue size to k. However, there may be instances where the number of candidates is actually lower than k.
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.