tinyquant-core 0.0.0

CPU-only vector quantization codec — core types, codec, corpus, and backend trait (no_std).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! AVX-512 kernel stubs (Phase 22).
//!
//! Phase 20 ships the dispatch framework; full AVX-512 intrinsic bodies
//! land in Phase 22 when the MSRV accommodates `avx512f` target-feature
//! gating. Until then every function delegates to the portable (scalar) path.
//!
//! Feature-gated: `simd` + `avx512`.

#[allow(unused_imports)]
pub use super::portable::{
    apply_residual_into, compute_residual_into, cosine, dequantize_into, quantize_into,
};