def forward(self, input): out = upfirdn2d(input, self.kernel, up=1, down=self.factor, pad=self.pad) return out
def forward(self, input): out = upfirdn2d(input, self.kernel, pad=self.pad) return out