| 2674 | // ggml_tanh |
| 2675 | |
| 2676 | struct ggml_tensor * ggml_tanh( |
| 2677 | struct ggml_context * ctx, |
| 2678 | struct ggml_tensor * a) { |
| 2679 | return ggml_unary(ctx, a, GGML_UNARY_OP_TANH); |
| 2680 | } |
| 2681 | |
| 2682 | struct ggml_tensor * ggml_tanh_inplace( |
| 2683 | struct ggml_context * ctx, |