| 2312 | } |
| 2313 | |
| 2314 | struct ggml_tensor * ggml_softplus_inplace( |
| 2315 | struct ggml_context * ctx, |
| 2316 | struct ggml_tensor * a) { |
| 2317 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_SOFTPLUS); |
| 2318 | } |
| 2319 | |
| 2320 | // ggml_sin |
| 2321 |
nothing calls this directly
no test coverage detected