| 2923 | // ggml_geglu |
| 2924 | |
| 2925 | struct ggml_tensor * ggml_geglu( |
| 2926 | struct ggml_context * ctx, |
| 2927 | struct ggml_tensor * a) { |
| 2928 | return ggml_glu_impl(ctx, a, NULL, GGML_GLU_OP_GEGLU, false); |
| 2929 | } |
| 2930 | |
| 2931 | struct ggml_tensor * ggml_geglu_swapped( |
| 2932 | struct ggml_context * ctx, |
no test coverage detected