(self, set_checkpointing=True)
| 410 | self.layernorm2 = LayerNorm(width) |
| 411 | |
| 412 | def set_grad_checkpointing(self, set_checkpointing=True): |
| 413 | self.transformer.set_grad_checkpointing(set_checkpointing) |
| 414 | |
| 415 | def forward(self, x, condition=None): |
| 416 | # x [B, V*N, D] |
nothing calls this directly
no test coverage detected