| 3487 | } |
| 3488 | |
| 3489 | struct ggml_tensor * ggml_div_inplace( |
| 3490 | struct ggml_context * ctx, |
| 3491 | struct ggml_tensor * a, |
| 3492 | struct ggml_tensor * b) { |
| 3493 | return ggml_div_impl(ctx, a, b, true); |
| 3494 | } |
| 3495 | |
| 3496 | // ggml_sqr |
| 3497 |
nothing calls this directly
no test coverage detected