From 85ef3db772f1d7e2f5dcabd5143b0083989c99f6 Mon Sep 17 00:00:00 2001 From: Mark Hildebrand Date: Fri, 6 Feb 2026 08:38:32 -0800 Subject: [PATCH 1/2] Remove the `experimental_avx512` feature. --- diskann-benchmark-simd/Cargo.toml | 2 +- diskann-vector/Cargo.toml | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) 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 = [] From d500345f90a5e384deebcb4a4bcc28c60ba3a9d5 Mon Sep 17 00:00:00 2001 From: Mark Hildebrand Date: Fri, 6 Feb 2026 08:40:34 -0800 Subject: [PATCH 2/2] Remove `diskann-vector` from `--no-default-featuer` test. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) 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