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
//! SIMD parity test binary — forces [`DispatchKind::Scalar`] (Phase 20).
#![cfg(feature = "simd")]

mod common;

use tinyquant_core::codec::dispatch::{force, DispatchKind};

#[test]
fn scalar_parity() {
    force(DispatchKind::Scalar);
    common::run_parity(DispatchKind::Scalar);
}