(self, x)
| 365 | self.proj_out = zero_module(conv_nd(1, channels, channels, 1)) |
| 366 | |
| 367 | def forward(self, x): |
| 368 | return checkpoint(self._forward, (x,), self.parameters(), True) |
| 369 | |
| 370 | def _forward(self, x): |
| 371 | b, c, *spatial = x.shape |
nothing calls this directly
no test coverage detected