| 2977 | } |
| 2978 | |
| 2979 | struct ggml_tensor * ggml_geglu_erf_split( |
| 2980 | struct ggml_context * ctx, |
| 2981 | struct ggml_tensor * a, |
| 2982 | struct ggml_tensor * b) { |
| 2983 | return ggml_glu_impl(ctx, a, b, GGML_GLU_OP_GEGLU_ERF, false); |
| 2984 | } |
| 2985 | |
| 2986 | // ggml_geglu_quick |
| 2987 |
no test coverage detected