| 672 | // ─── AddRmsNorm: rms_norm(a + b, weight, eps) with residual ───────── |
| 673 | |
| 674 | pub(super) struct AddRmsNorm { |
| 675 | pub eps: f32, |
| 676 | pub n_cols: usize, |
| 677 | } |
| 678 | |
| 679 | impl candle_core::CustomOp3 for AddRmsNorm { |
| 680 | fn name(&self) -> &'static str { |
nothing calls this directly
no outgoing calls
no test coverage detected