-
Notifications
You must be signed in to change notification settings - Fork 286
FEATURE: improve IVFFLAT assign center in ProductL2 by usearch exact search and GPU #23255
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zhangxu19830126
approved these changes
Dec 18, 2025
heni02
approved these changes
Dec 18, 2025
aunjgr
approved these changes
Dec 18, 2025
XuPeng-SH
approved these changes
Dec 18, 2025
Contributor
Merge Queue Status✅ The pull request has been merged at 69ed5d2 This pull request spent 55 minutes 22 seconds in the queue, including 55 minutes 11 seconds running CI. Required conditions to merge
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
What type of PR is this?
Which issue(s) this PR fixes:
issue #23254
What this PR does / why we need it:
Current status:
PR Type
Enhancement, Bug fix
Description
Implement brute force vector index for efficient centroid search in ProductL2
Replace manual distance computation with vectorized search using USearch and GPU support
Refactor IVFFlat centroid lookup to use brute force index instead of heap-based search
Add CPU and GPU implementations with metric type conversions and proper resource management
Diagram Walkthrough
File Walkthrough
10 files
Add GetArrayElementSize method for vector typesRefactor to use brute force index for centroid searchAdd brute force index field to container structImplement brute force index with USearch and Go backendsCPU-only brute force index factory functionGPU brute force index using CUVS library with resource managementReplace centroid heap search with brute force index lookupAdd metric type to CUVS distance mappingAdd metric type to USearch metric mappingAdd NThreads field to RuntimeConfig for brute force index4 files
Add unit tests for brute force index implementationsGPU brute force index concurrent stress testsAdd integration test for IVF and brute force indexAdd GPU stress test for centroid search with concurrent queries1 files
Refactor GPU K-means to defer resource allocation until clustering2 files
Add viterin/partial dependency and use custom USearch forkUpdate checksums for new dependencies1 files
Update USearch to hotfix version with SimSIMD support