| 2294 | } |
| 2295 | |
| 2296 | struct ggml_tensor * ggml_expm1( |
| 2297 | struct ggml_context * ctx, |
| 2298 | struct ggml_tensor * a) { |
| 2299 | return ggml_unary(ctx, a, GGML_UNARY_OP_EXPM1); |
| 2300 | } |
| 2301 | |
| 2302 | struct ggml_tensor * ggml_expm1_inplace( |
| 2303 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected