| 2902 | // ggml_reglu |
| 2903 | |
| 2904 | struct ggml_tensor * ggml_reglu( |
| 2905 | struct ggml_context * ctx, |
| 2906 | struct ggml_tensor * a) { |
| 2907 | return ggml_glu_impl(ctx, a, NULL, GGML_GLU_OP_REGLU, false); |
| 2908 | } |
| 2909 | |
| 2910 | struct ggml_tensor * ggml_reglu_swapped( |
| 2911 | struct ggml_context * ctx, |
no test coverage detected