| 2610 | } |
| 2611 | |
| 2612 | struct ggml_tensor * ggml_tanh_inplace( |
| 2613 | struct ggml_context * ctx, |
| 2614 | struct ggml_tensor * a) { |
| 2615 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_TANH); |
| 2616 | } |
| 2617 | |
| 2618 | // ggml_elu |
| 2619 |
nothing calls this directly
no test coverage detected