| 3480 | } |
| 3481 | |
| 3482 | struct ggml_tensor * ggml_div( |
| 3483 | struct ggml_context * ctx, |
| 3484 | struct ggml_tensor * a, |
| 3485 | struct ggml_tensor * b) { |
| 3486 | return ggml_div_impl(ctx, a, b, false); |
| 3487 | } |
| 3488 | |
| 3489 | struct ggml_tensor * ggml_div_inplace( |
| 3490 | struct ggml_context * ctx, |