(ctx, grad_output)
| 261 | |
| 262 | @staticmethod |
| 263 | def backward(ctx, grad_output): |
| 264 | (input,) = ctx.saved_tensors |
| 265 | tmp = gelu_bwd(grad_output, input) |
| 266 | return tmp |
| 267 | |
| 268 | |
| 269 | fast_gelu_impl = FastGeLUFunction.apply |
nothing calls this directly
no test coverage detected