| 2239 | } |
| 2240 | |
| 2241 | struct ggml_tensor * ggml_mul( |
| 2242 | struct ggml_context * ctx, |
| 2243 | struct ggml_tensor * a, |
| 2244 | struct ggml_tensor * b) { |
| 2245 | return ggml_mul_impl(ctx, a, b, false); |
| 2246 | } |
| 2247 | |
| 2248 | struct ggml_tensor * ggml_mul_inplace( |
| 2249 | struct ggml_context * ctx, |