//! Per-channel vs Per-tensor Quantization Granularity
//!
//! Provides quantization at different granularities:
//! - **Per-tensor**: Single scale/zero-point for entire tensor (fastest, least accurate)
//! - **Per-channel**: Separate scale/zero-point per channel (slower, more accurate)
//! - **Per-group**: Scale/zero-point per group of values (balance of speed/accuracy)
//!
//! Per-channel is critical for weight quantization where channels have different ranges.
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;