(self, x)
| 157 | self.op = avg_pool_nd(dims, kernel_size=stride, stride=stride) |
| 158 | |
| 159 | def forward(self, x): |
| 160 | assert x.shape[1] == self.channels |
| 161 | return self.op(x) |
| 162 | |
| 163 | |
| 164 | class ResBlock(TimestepBlock): |
nothing calls this directly
no outgoing calls
no test coverage detected