| 4250 | } |
| 4251 | |
| 4252 | struct ggml_tensor * ggml_scale_inplace( |
| 4253 | struct ggml_context * ctx, |
| 4254 | struct ggml_tensor * a, |
| 4255 | struct ggml_tensor * b) { |
| 4256 | return ggml_scale_impl(ctx, a, b, true); |
| 4257 | } |
| 4258 | |
| 4259 | // ggml_set |
| 4260 |
no test coverage detected