(ctx, grad_out)
| 68 | @staticmethod |
| 69 | @once_differentiable |
| 70 | def backward(ctx, grad_out): |
| 71 | X, weight = ctx.saved_tensors |
| 72 | return convolution_backward(grad_out, X, weight) |
| 73 | |
| 74 | ###################################################################### |
| 75 | # When testing with ``gradcheck``, it is important to use double precision |
no test coverage detected