(self, x, context=None)
| 266 | self.checkpoint = checkpoint |
| 267 | |
| 268 | def forward(self, x, context=None): |
| 269 | return checkpoint(self._forward, (x, context), self.parameters(), self.checkpoint) |
| 270 | |
| 271 | def _forward(self, x, context=None): |
| 272 | x = self.attn1(self.norm1(x), context=context if self.disable_self_attn else None) + x |
nothing calls this directly
no test coverage detected