| 2202 | } |
| 2203 | |
| 2204 | struct ggml_tensor * ggml_div( |
| 2205 | struct ggml_context * ctx, |
| 2206 | struct ggml_tensor * a, |
| 2207 | struct ggml_tensor * b) { |
| 2208 | return ggml_div_impl(ctx, a, b, false); |
| 2209 | } |
| 2210 | |
| 2211 | struct ggml_tensor * ggml_div_inplace( |
| 2212 | struct ggml_context * ctx, |