| 2914 | } |
| 2915 | |
| 2916 | struct ggml_tensor * ggml_reglu_split( |
| 2917 | struct ggml_context * ctx, |
| 2918 | struct ggml_tensor * a, |
| 2919 | struct ggml_tensor * b) { |
| 2920 | return ggml_glu_impl(ctx, a, b, GGML_GLU_OP_REGLU, false); |
| 2921 | } |
| 2922 | |
| 2923 | // ggml_geglu |
| 2924 |
no test coverage detected