-
Notifications
You must be signed in to change notification settings - Fork 245
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
feat: support float16/float64 for multivector #3387
Conversation
Signed-off-by: BubbleCal <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3387 +/- ##
==========================================
- Coverage 78.49% 78.47% -0.02%
==========================================
Files 250 250
Lines 90243 90278 +35
Branches 90243 90278 +35
==========================================
+ Hits 70833 70847 +14
- Misses 16505 16524 +19
- Partials 2905 2907 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Do you want any kind of test to exercise this new code?
distance_type, | ||
), | ||
_ => unreachable!("missed to check query type"), | ||
}, | ||
} | ||
}) | ||
.unwrap_or(f32::NAN) |
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.
Do the different distance functions always return f32?
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.
yes, the distance is always f32
will add that in lancedb |
No description provided.