Skip to content

Commit

Permalink
patelyash/index factory (#340) (#380)
Browse files Browse the repository at this point in the history

---------

Co-authored-by: Yash Patel <47032340+yashpatel007@users.noreply.github.com>
Co-authored-by: harsha vardhan simhadri <harsha.v.simhadri@gmail.com>
Co-authored-by: Gopal Srinivasa <gopalsr@microsoft.com>
Co-authored-by: ravishankar <rakri@microsoft.com>
Co-authored-by: Harsha Vardhan Simhadri <harsha-simhadri@users.noreply.github.com>
  • Loading branch information
6 people committed Jun 26, 2023
1 parent 1ac95d2 commit 0c71838
Show file tree
Hide file tree
Showing 141 changed files with 17,048 additions and 0 deletions.
1,814 changes: 1,814 additions & 0 deletions rust/Cargo.lock

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions rust/Cargo.toml
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 rust/cmd_drivers/build_and_insert_delete_memory_index/Cargo.toml
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" }

Loading

0 comments on commit 0c71838

Please sign in to comment.