| 4426 | |
| 4427 | // make contiguous, with new shape |
| 4428 | GGML_API struct ggml_tensor * ggml_cont_1d( |
| 4429 | struct ggml_context * ctx, |
| 4430 | struct ggml_tensor * a, |
| 4431 | int64_t ne0) { |
| 4432 | return ggml_cont_4d(ctx, a, ne0, 1, 1, 1); |
| 4433 | } |
| 4434 | |
| 4435 | GGML_API struct ggml_tensor * ggml_cont_2d( |
| 4436 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected