| 3815 | // ggml_tanh |
| 3816 | |
| 3817 | struct ggml_tensor * ggml_tanh( |
| 3818 | struct ggml_context * ctx, |
| 3819 | struct ggml_tensor * a) { |
| 3820 | return ggml_unary(ctx, a, GGML_UNARY_OP_TANH); |
| 3821 | } |
| 3822 | |
| 3823 | struct ggml_tensor * ggml_tanh_inplace( |
| 3824 | struct ggml_context * ctx, |