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