| 3879 | // ggml_gelu_quick |
| 3880 | |
| 3881 | struct ggml_tensor * ggml_gelu_quick( |
| 3882 | struct ggml_context * ctx, |
| 3883 | struct ggml_tensor * a) { |
| 3884 | return ggml_unary(ctx, a, GGML_UNARY_OP_GELU_QUICK); |
| 3885 | } |
| 3886 | |
| 3887 | struct ggml_tensor * ggml_gelu_quick_inplace( |
| 3888 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected