(self, t)
| 137 | |
| 138 | @torch.compiler.disable |
| 139 | def forward(self, t): |
| 140 | |
| 141 | cos = self.freqs_cos.clone().to(t.dtype) |
| 142 | sin = self.freqs_sin.clone().to(t.dtype) |
| 143 | |
| 144 | |
| 145 | results = t * cos + rotate_half(t) * sin |
| 146 | return results.contiguous() |
nothing calls this directly
no test coverage detected