| 2998 | } |
| 2999 | |
| 3000 | struct ggml_tensor * ggml_geglu_quick_split( |
| 3001 | struct ggml_context * ctx, |
| 3002 | struct ggml_tensor * a, |
| 3003 | struct ggml_tensor * b) { |
| 3004 | return ggml_glu_impl(ctx, a, b, GGML_GLU_OP_GEGLU_QUICK, false); |
| 3005 | } |
| 3006 | |
| 3007 | struct ggml_tensor * ggml_swiglu_oai( |
| 3008 | struct ggml_context * ctx, |
no test coverage detected