sipp-rs 0.1.0

Unified Rust library for extensible Sipp inference
1
2
3
4
pub(crate) const DEFAULT_MODEL_FILE_NAME: &str = "model.gguf";
pub(crate) const BYTES_PER_KIB: usize = 1024;
pub(crate) const BYTES_PER_MIB: usize = BYTES_PER_KIB * BYTES_PER_KIB;
pub(crate) const BYTES_PER_MIB_U64: u64 = BYTES_PER_MIB as u64;