//! Quantization data representation.
// Re-exported types
pub use crate;
/// Alignment (in bytes) for quantization parameters in serialized tensor data.
///
/// NOTE: This is currently f32-based since scales were originally always f32.
/// With `QuantParam` now supporting different precisions (F16, BF16, etc.),
/// this alignment may need to be revisited in the future.
pub const QPARAM_ALIGN: usize = ;
pub use *;
pub use pack_i8s_to_u32s;
pub use QuantizedBytes;