The https://docs.nvidia.com/deeplearning/sdk/cudnn-developer-guide/index.html#cudnnSetConvolutionNdDescriptor documentation for
cudnnSetConvolutionNdDescriptor
states that padding is applied to both the start and the end. Is there a way to only apply padding at the start?
Can I do this manually? ( i.e. if I need padding of 511 zeroes, I would just append that many at the start of the input tensor by hand in the cudaMalloc-ed input array )