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
//! Smoke test — confirms tinyquant-core compiles and links.
#[test]
fn core_crate_builds() {
    // size_of::<u8>() confirms the crate links against core.
    assert_eq!(core::mem::size_of::<u8>(), 1);
}