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::Neon`] (Phase 20).
#![cfg(all(feature = "simd", target_arch = "aarch64"))]

mod common;

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

#[test]
fn neon_parity() {
    force(DispatchKind::Neon);
    common::run_parity(DispatchKind::Neon);
}