| 2944 | // ggml_swiglu |
| 2945 | |
| 2946 | struct ggml_tensor * ggml_swiglu( |
| 2947 | struct ggml_context * ctx, |
| 2948 | struct ggml_tensor * a) { |
| 2949 | return ggml_glu_impl(ctx, a, NULL, GGML_GLU_OP_SWIGLU, false); |
| 2950 | } |
| 2951 | |
| 2952 | struct ggml_tensor * ggml_swiglu_swapped( |
| 2953 | struct ggml_context * ctx, |
no test coverage detected