| 2604 | // ggml_tanh |
| 2605 | |
| 2606 | struct ggml_tensor * ggml_tanh( |
| 2607 | struct ggml_context * ctx, |
| 2608 | struct ggml_tensor * a) { |
| 2609 | return ggml_unary(ctx, a, GGML_UNARY_OP_TANH); |
| 2610 | } |
| 2611 | |
| 2612 | struct ggml_tensor * ggml_tanh_inplace( |
| 2613 | struct ggml_context * ctx, |