cubek_std/tile/compute/rowwise/mod.rs
1//! Row-wise tile compute. The `Tile<E, Plane, ReadWrite>` impl in [`dispatch`]
2//! routes per-variant `row_max`, `row_sum`, `exp_diff`, and `rowwise_scale`
3//! to the right backend; [`reducer`] handles the cross-unit plane reduction
4//! used by the `WhiteboxFragment` and `BounceTile` arms.
5
6mod dispatch;
7pub(crate) mod reducer;