(ctx, input, bias)
| 218 | @staticmethod |
| 219 | # bias is an optional argument |
| 220 | def forward(ctx, input, bias): |
| 221 | ctx.save_for_backward(input, bias) |
| 222 | return bias_gelu(input, bias) |
| 223 | |
| 224 | @staticmethod |
| 225 | def backward(ctx, grad_output): |
nothing calls this directly
no test coverage detected