diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dae278a26..53203b07c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,7 +90,6 @@ jobs: - diskann-disk - diskann-quantization - diskann-utils - - diskann-vector # Benchmark/tools crates - diskann-benchmark-core - diskann-benchmark-runner diff --git a/diskann-benchmark-simd/Cargo.toml b/diskann-benchmark-simd/Cargo.toml index b7f8406d0..fa4857814 100644 --- a/diskann-benchmark-simd/Cargo.toml +++ b/diskann-benchmark-simd/Cargo.toml @@ -20,7 +20,7 @@ rand.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true thiserror.workspace = true -diskann-vector = { workspace = true, features = ["experimental_avx512"] } +diskann-vector = { workspace = true } diskann-wide.workspace = true [lints] diff --git a/diskann-vector/Cargo.toml b/diskann-vector/Cargo.toml index b22356ddd..79b5239ad 100644 --- a/diskann-vector/Cargo.toml +++ b/diskann-vector/Cargo.toml @@ -37,5 +37,3 @@ harness = false # clippy.undocumented_unsafe_blocks = "warn" clippy.uninlined_format_args = "allow" -[features] -experimental_avx512 = []