(ctx, grad_output: torch.Tensor)
| 302 | |
| 303 | @staticmethod |
| 304 | def backward(ctx, grad_output: torch.Tensor) -> torch.Tensor: |
| 305 | input = ctx.saved_tensors |
| 306 | tmp = telechat_gelu_back(grad_output, input) |
| 307 | return tmp |
| 308 | |
| 309 | |
| 310 | class TelechatGelu(nn.Module): |
no test coverage detected