| 2209 | } |
| 2210 | |
| 2211 | struct ggml_tensor * ggml_div_inplace( |
| 2212 | struct ggml_context * ctx, |
| 2213 | struct ggml_tensor * a, |
| 2214 | struct ggml_tensor * b) { |
| 2215 | return ggml_div_impl(ctx, a, b, true); |
| 2216 | } |
| 2217 | |
| 2218 | // ggml_sqr |
| 2219 |
no test coverage detected