(x, theta, conj)
| 225 | class ApplyRotaryEmbeddingInplace(torch.autograd.Function): |
| 226 | @staticmethod |
| 227 | def forward(x, theta, conj): |
| 228 | _apply_rotary_emb_inplace(x, theta, conj=conj) |
| 229 | return x |
| 230 | |
| 231 | @staticmethod |
| 232 | def setup_context(ctx, inputs, output): |
nothing calls this directly
no test coverage detected