Hi,
I'm currently trying to implement a custom convolution operation (foward and backward passes). I am starting from the code provided here
I am getting an error with the backward pass, as d_o and I don't have the same Height H and Width W (when the kernel size is > 1).
Is there currently a way to define the classic convolution operator with backward and a filter size > 1 pass using Tensor Comprehension ?
(Note that I'm not using TC.make_autograd, as this functionality does not seem to be available with the currently released conda package)
Thanks,
Lucas
Hi,
I'm currently trying to implement a custom convolution operation (foward and backward passes). I am starting from the code provided here
I am getting an error with the backward pass, as
d_oandIdon't have the same HeightHand WidthW(when the kernel size is > 1).Is there currently a way to define the classic convolution operator with backward and a filter size > 1 pass using Tensor Comprehension ?
(Note that I'm not using TC.make_autograd, as this functionality does not seem to be available with the currently released conda package)
Thanks,
Lucas