(ctx, grad_out)
| 32 | |
| 33 | @staticmethod |
| 34 | def backward(ctx, grad_out): |
| 35 | rowptr, out = ctx.saved_tensors |
| 36 | grad_out = grad_out.contiguous() |
| 37 | grad_softmax = edge_softmax.edge_softmax_backward(rowptr, out, grad_out) |
| 38 | return None, grad_softmax |
nothing calls this directly
no test coverage detected