| 3469 | |
| 3470 | // make contiguous, with new shape |
| 3471 | GGML_API struct ggml_tensor * ggml_cont_1d( |
| 3472 | struct ggml_context * ctx, |
| 3473 | struct ggml_tensor * a, |
| 3474 | int64_t ne0) { |
| 3475 | return ggml_cont_4d(ctx, a, ne0, 1, 1, 1); |
| 3476 | } |
| 3477 | |
| 3478 | GGML_API struct ggml_tensor * ggml_cont_2d( |
| 3479 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected