Skip to content
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

Port of C++ implementation to Rust #380

Merged
merged 2 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading