| 2288 | } |
| 2289 | |
| 2290 | struct ggml_tensor * ggml_log_inplace( |
| 2291 | struct ggml_context * ctx, |
| 2292 | struct ggml_tensor * a) { |
| 2293 | return ggml_log_impl(ctx, a, true); |
| 2294 | } |
| 2295 | |
| 2296 | struct ggml_tensor * ggml_expm1( |
| 2297 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected