| 2624 | } |
| 2625 | |
| 2626 | struct ggml_tensor * ggml_elu_inplace( |
| 2627 | struct ggml_context * ctx, |
| 2628 | struct ggml_tensor * a) { |
| 2629 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_ELU); |
| 2630 | } |
| 2631 | |
| 2632 | // ggml_relu |
| 2633 |
nothing calls this directly
no test coverage detected