tinyquant-io 0.0.0

Serialization, mmap, and file I/O for TinyQuant.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Level-2 TQCV corpus file container.

pub(crate) mod header;
pub mod metadata;
pub mod reader;
pub mod writer;

pub use header::CorpusFileHeader;
pub use metadata::MetadataBlob;
pub use reader::CodecFileReader;
pub use writer::CodecFileWriter;