Apply the block to a Tensor, conditioned on a timestep embedding. :param x: an [N x C x ...] Tensor of features. :param emb: an [N x emb_channels] Tensor of timestep embeddings. :return: an [N x C x ...] Tensor of outputs.
(self, x, emb)
| 307 | self.skip_connection = conv_nd(dims, channels, self.out_channels, 1) |
| 308 | |
| 309 | def forward(self, x, emb): |
| 310 | """ |
| 311 | Apply the block to a Tensor, conditioned on a timestep embedding. |
| 312 | :param x: an [N x C x ...] Tensor of features. |
| 313 | :param emb: an [N x emb_channels] Tensor of timestep embeddings. |
| 314 | :return: an [N x C x ...] Tensor of outputs. |
| 315 | """ |
| 316 | return checkpoint( |
| 317 | self._forward, (x, emb), self.parameters(), self.use_checkpoint |
| 318 | ) |
| 319 | |
| 320 | |
| 321 | def _forward(self, x, emb): |
nothing calls this directly
no test coverage detected