| 2306 | } |
| 2307 | |
| 2308 | struct ggml_tensor * ggml_softplus( |
| 2309 | struct ggml_context * ctx, |
| 2310 | struct ggml_tensor * a) { |
| 2311 | return ggml_unary(ctx, a, GGML_UNARY_OP_SOFTPLUS); |
| 2312 | } |
| 2313 | |
| 2314 | struct ggml_tensor * ggml_softplus_inplace( |
| 2315 | struct ggml_context * ctx, |
no test coverage detected