(self, x, cond)
| 186 | return f"eps={self.eps}," |
| 187 | |
| 188 | def forward(self, x, cond): |
| 189 | return rms_norm(x, self.linear(cond)[:, None, None, :] + 1, self.eps) |
| 190 | |
| 191 | |
| 192 | # Rotary position embeddings |
nothing calls this directly
no test coverage detected