| 2618 | // ggml_elu |
| 2619 | |
| 2620 | struct ggml_tensor * ggml_elu( |
| 2621 | struct ggml_context * ctx, |
| 2622 | struct ggml_tensor * a) { |
| 2623 | return ggml_unary(ctx, a, GGML_UNARY_OP_ELU); |
| 2624 | } |
| 2625 | |
| 2626 | struct ggml_tensor * ggml_elu_inplace( |
| 2627 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected