Skip to main content

nodedb_vector/distance/simd/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Runtime SIMD dispatch for vector distance and bitmap operations.
4
5pub mod hamming;
6pub mod runtime;
7pub mod scalar;
8
9#[cfg(target_arch = "x86_64")]
10pub mod avx2;
11#[cfg(target_arch = "x86_64")]
12pub mod avx512;
13#[cfg(target_arch = "aarch64")]
14pub mod neon;
15
16pub use runtime::{SimdRuntime, runtime};