| 3397 | } |
| 3398 | |
| 3399 | struct ggml_tensor * ggml_sub_inplace( |
| 3400 | struct ggml_context * ctx, |
| 3401 | struct ggml_tensor * a, |
| 3402 | struct ggml_tensor * b) { |
| 3403 | return ggml_sub_impl(ctx, a, b, true); |
| 3404 | } |
| 3405 | |
| 3406 | // ggml_mul |
| 3407 |
nothing calls this directly
no test coverage detected