| 2170 | } |
| 2171 | |
| 2172 | struct ggml_tensor * ggml_mul( |
| 2173 | struct ggml_context * ctx, |
| 2174 | struct ggml_tensor * a, |
| 2175 | struct ggml_tensor * b) { |
| 2176 | return ggml_mul_impl(ctx, a, b, false); |
| 2177 | } |
| 2178 | |
| 2179 | struct ggml_tensor * ggml_mul_inplace( |
| 2180 | struct ggml_context * ctx, |