(ctx, grad_output)
| 294 | |
| 295 | @staticmethod |
| 296 | def backward(ctx, grad_output): |
| 297 | input, = ctx.saved_tensors |
| 298 | return sqrelu_bwd(grad_output, input) |
| 299 | |
| 300 | |
| 301 | sqrelu = SquaredReLUFunction.apply |
nothing calls this directly
no test coverage detected