| 2929 | } |
| 2930 | |
| 2931 | struct ggml_tensor * ggml_geglu_swapped( |
| 2932 | struct ggml_context * ctx, |
| 2933 | struct ggml_tensor * a) { |
| 2934 | return ggml_glu_impl(ctx, a, NULL, GGML_GLU_OP_GEGLU, true); |
| 2935 | } |
| 2936 | |
| 2937 | struct ggml_tensor * ggml_geglu_split( |
| 2938 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected