| 4419 | } |
| 4420 | |
| 4421 | struct ggml_tensor * ggml_cont_inplace( |
| 4422 | struct ggml_context * ctx, |
| 4423 | struct ggml_tensor * a) { |
| 4424 | return ggml_cont_impl(ctx, a, true); |
| 4425 | } |
| 4426 | |
| 4427 | // make contiguous, with new shape |
| 4428 | GGML_API struct ggml_tensor * ggml_cont_1d( |
nothing calls this directly
no test coverage detected