| 2908 | } |
| 2909 | |
| 2910 | struct ggml_tensor * ggml_reglu_swapped( |
| 2911 | struct ggml_context * ctx, |
| 2912 | struct ggml_tensor * a) { |
| 2913 | return ggml_glu_impl(ctx, a, NULL, GGML_GLU_OP_REGLU, true); |
| 2914 | } |
| 2915 | |
| 2916 | struct ggml_tensor * ggml_reglu_split( |
| 2917 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected