| 903 | // ─── AdaLnModulate: rms_norm(x,w,eps) * (1+scale) + shift ────────── |
| 904 | |
| 905 | pub(super) struct AdaLnModulate { |
| 906 | pub eps: f32, |
| 907 | pub shift: Tensor, |
| 908 | } |
| 909 | |
| 910 | #[allow(clippy::too_many_arguments)] |
| 911 | impl candle_core::CustomOp3 for AdaLnModulate { |
nothing calls this directly
no outgoing calls
no test coverage detected