-
Notifications
You must be signed in to change notification settings - Fork 25
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 fp16/bf16 vector #89
base: main
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: jiangyinzuo The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Welcome @jiangyinzuo! It looks like this is your first PR to milvus-io/milvus-sdk-rust 🎉 |
0638758
to
b9f4f8c
Compare
8611da7
to
7ff5957
Compare
/lgtm |
7ff5957
to
485f0aa
Compare
New changes are detected. LGTM label has been removed. |
/lgtm |
@jiangyinzuo: you cannot LGTM your own PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
94b52a3
to
17059e2
Compare
dc18974
to
dc4f991
Compare
Depends on [half](https://crates.io/crates/half/) crate. Add fp32/fp64/fp16/bf16 Vec conversion. BREAKING CHANGES: - `FieldColumn::new() -> FieldColumn` -> `FieldColumn::new() -> Result<FieldColumn>` - add type checking so it may return Error issue: milvus-io/milvus#37448 Signed-off-by: Yinzuo Jiang <jiangyinzuo@foxmail.com> Signed-off-by: Yinzuo Jiang <yinzuo.jiang@zilliz.com>
Depends on half crate.
Add fp32/fp64/fp16/bf16 Vec conversion.
BREAKING CHANGES:
FieldColumn::new() -> FieldColumn
->FieldColumn::new() -> Result<FieldColumn>
issue: milvus-io/milvus#37448