(ctx, grad_output)
| 277 | |
| 278 | @staticmethod |
| 279 | def backward(ctx, grad_output): |
| 280 | return _drop_from_previous_rank(grad_output, ctx.dim, ctx.kernel_size), None, None |
| 281 | |
| 282 | |
| 283 | def conv_scatter_to_context_parallel_region(input_, dim, kernel_size): |
nothing calls this directly
no test coverage detected