| 2177 | } |
| 2178 | |
| 2179 | struct ggml_tensor * ggml_mul_inplace( |
| 2180 | struct ggml_context * ctx, |
| 2181 | struct ggml_tensor * a, |
| 2182 | struct ggml_tensor * b) { |
| 2183 | return ggml_mul_impl(ctx, a, b, true); |
| 2184 | } |
| 2185 | |
| 2186 | // ggml_div |
| 2187 |
nothing calls this directly
no test coverage detected