(self, x, context=None)
| 465 | self.checkpoint = checkpoint |
| 466 | |
| 467 | def forward(self, x, context=None): |
| 468 | return checkpoint(self._forward, (x, context), self.parameters(), self.checkpoint) |
| 469 | |
| 470 | def _forward(self, x, context=None): |
| 471 | x = self.attn1(self.norm1(x), context=context) + x |
nothing calls this directly
no test coverage detected