Skip to main content

ferrum_quantization/
traits.rs

1//! Re-export of `Linear` trait (canonical home: ferrum-kernels).
2//!
3//! The trait itself lives in `ferrum-kernels::linear` so that Backend-level
4//! helpers (`layer_forward_fused`) can reference it without ferrum-kernels
5//! depending on this crate (which would be circular).
6
7pub use ferrum_kernels::Linear;