(self, input)
| 61 | self.pad = (pad0, pad1) |
| 62 | |
| 63 | def forward(self, input): |
| 64 | out = upfirdn2d(input, self.kernel, up=self.factor, down=1, pad=self.pad) |
| 65 | |
| 66 | return out |
| 67 | |
| 68 | |
| 69 | class Downsample(nn.Module): |
nothing calls this directly
no test coverage detected