| 2145 | } |
| 2146 | |
| 2147 | struct ggml_tensor * ggml_sub_inplace( |
| 2148 | struct ggml_context * ctx, |
| 2149 | struct ggml_tensor * a, |
| 2150 | struct ggml_tensor * b) { |
| 2151 | return ggml_sub_impl(ctx, a, b, true); |
| 2152 | } |
| 2153 | |
| 2154 | // ggml_mul |
| 2155 |
nothing calls this directly
no test coverage detected