| 2935 | } |
| 2936 | |
| 2937 | struct ggml_tensor * ggml_geglu_split( |
| 2938 | struct ggml_context * ctx, |
| 2939 | struct ggml_tensor * a, |
| 2940 | struct ggml_tensor * b) { |
| 2941 | return ggml_glu_impl(ctx, a, b, GGML_GLU_OP_GEGLU, false); |
| 2942 | } |
| 2943 | |
| 2944 | // ggml_swiglu |
| 2945 |
no test coverage detected