| 2677 | // ggml_gelu |
| 2678 | |
| 2679 | struct ggml_tensor * ggml_gelu( |
| 2680 | struct ggml_context * ctx, |
| 2681 | struct ggml_tensor * a) { |
| 2682 | return ggml_unary(ctx, a, GGML_UNARY_OP_GELU); |
| 2683 | } |
| 2684 | |
| 2685 | struct ggml_tensor * ggml_gelu_inplace( |
| 2686 | struct ggml_context * ctx, |