(ctx, grad_output)
| 326 | |
| 327 | @staticmethod |
| 328 | def backward(ctx, grad_output): |
| 329 | return _drop_from_previous_rank(grad_output, ctx.dim, ctx.kernel_size), None, None |
| 330 | |
| 331 | |
| 332 | class _FakeCPConvolutionPassFromPreviousRank(torch.autograd.Function): |
nothing calls this directly
no test coverage detected