| 2965 | // ggml_geglu_erf |
| 2966 | |
| 2967 | struct ggml_tensor * ggml_geglu_erf( |
| 2968 | struct ggml_context * ctx, |
| 2969 | struct ggml_tensor * a) { |
| 2970 | return ggml_glu_impl(ctx, a, NULL, GGML_GLU_OP_GEGLU_ERF, false); |
| 2971 | } |
| 2972 | |
| 2973 | struct ggml_tensor * ggml_geglu_erf_swapped( |
| 2974 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected