| 3865 | // ggml_gelu |
| 3866 | |
| 3867 | struct ggml_tensor * ggml_gelu( |
| 3868 | struct ggml_context * ctx, |
| 3869 | struct ggml_tensor * a) { |
| 3870 | return ggml_unary(ctx, a, GGML_UNARY_OP_GELU); |
| 3871 | } |
| 3872 | |
| 3873 | struct ggml_tensor * ggml_gelu_inplace( |
| 3874 | struct ggml_context * ctx, |