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