Exemplo n.º 1
0
    def forward(self, input):
        out = upfirdn2d(input,
                        self.kernel,
                        up=self.factor,
                        down=1,
                        pad=self.pad)

        return out
Exemplo n.º 2
0
    def forward(self, input):
        out = upfirdn2d(input, self.kernel, pad=self.pad)

        return out