quantize 0.2.2

A simple quantization library.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Pieces every scheme uses: errors, scales, packing, the output type.

pub mod error;
pub mod packed;
pub mod params;
pub mod scale;
pub mod scheme;
pub mod tensor;

pub(crate) mod decode;