| 2300 | } |
| 2301 | |
| 2302 | struct ggml_tensor * ggml_expm1_inplace( |
| 2303 | struct ggml_context * ctx, |
| 2304 | struct ggml_tensor * a) { |
| 2305 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_EXPM1); |
| 2306 | } |
| 2307 | |
| 2308 | struct ggml_tensor * ggml_softplus( |
| 2309 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected