| 4384 | } |
| 4385 | |
| 4386 | struct ggml_tensor * ggml_cpy_inplace( |
| 4387 | struct ggml_context * ctx, |
| 4388 | struct ggml_tensor * a, |
| 4389 | struct ggml_tensor * b) { |
| 4390 | return ggml_cpy_impl(ctx, a, b, true); |
| 4391 | } |
| 4392 | |
| 4393 | // ggml_cont |
| 4394 |
nothing calls this directly
no test coverage detected