(ctx, grad_output)
| 26 | |
| 27 | @staticmethod |
| 28 | def backward(ctx, grad_output): |
| 29 | indices, = ctx.saved_tensors |
| 30 | grad_features = _backend.gather_features_backward(grad_output.contiguous(), indices, ctx.num_points) |
| 31 | return grad_features, None |
| 32 | |
| 33 | |
| 34 | gather = Gather.apply |