(ctx, input_, dim, kernel_size)
| 320 | class _ConvolutionPassFromPreviousRank(torch.autograd.Function): |
| 321 | @staticmethod |
| 322 | def forward(ctx, input_, dim, kernel_size): |
| 323 | ctx.dim = dim |
| 324 | ctx.kernel_size = kernel_size |
| 325 | return _pass_from_previous_rank(input_, dim, kernel_size) |
| 326 | |
| 327 | @staticmethod |
| 328 | def backward(ctx, grad_output): |
nothing calls this directly
no test coverage detected