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