(ctx, input)
| 256 | @staticmethod |
| 257 | # bias is an optional argument |
| 258 | def forward(ctx, input): |
| 259 | ctx.save_for_backward(input) |
| 260 | return gelu_fwd(input) |
| 261 | |
| 262 | @staticmethod |
| 263 | def backward(ctx, grad_output): |
nothing calls this directly
no test coverage detected