-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
--------- Co-authored-by: Yash Patel <[email protected]> Co-authored-by: harsha vardhan simhadri <[email protected]> Co-authored-by: Gopal Srinivasa <[email protected]> Co-authored-by: ravishankar <[email protected]> Co-authored-by: Harsha Vardhan Simhadri <[email protected]>
- Loading branch information
1 parent
1ac95d2
commit 0c71838
Showing
141 changed files
with
17,048 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT license. | ||
|
||
[workspace] | ||
members = [ | ||
"cmd_drivers/build_memory_index", | ||
"cmd_drivers/build_and_insert_memory_index", | ||
"cmd_drivers/load_and_insert_memory_index", | ||
"cmd_drivers/convert_f32_to_bf16", | ||
"cmd_drivers/search_memory_index", | ||
"cmd_drivers/build_disk_index", | ||
"cmd_drivers/build_and_insert_delete_memory_index", | ||
"vector", | ||
"diskann", | ||
"platform", | ||
"logger", | ||
"vector_base64" | ||
] | ||
resolver = "2" | ||
|
||
[profile.release] | ||
opt-level = 3 | ||
codegen-units=1 |
14 changes: 14 additions & 0 deletions
14
rust/cmd_drivers/build_and_insert_delete_memory_index/Cargo.toml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT license. | ||
[package] | ||
name = "build_and_insert_delete_memory_index" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
diskann = { path = "../../diskann" } | ||
logger = { path = "../../logger" } | ||
vector = { path = "../../vector" } | ||
|
Oops, something went wrong.