| 4433 | } |
| 4434 | |
| 4435 | GGML_API struct ggml_tensor * ggml_cont_2d( |
| 4436 | struct ggml_context * ctx, |
| 4437 | struct ggml_tensor * a, |
| 4438 | int64_t ne0, |
| 4439 | int64_t ne1) { |
| 4440 | return ggml_cont_4d(ctx, a, ne0, ne1, 1, 1); |
| 4441 | } |
| 4442 | |
| 4443 | GGML_API struct ggml_tensor * ggml_cont_3d( |
| 4444 | struct ggml_context * ctx, |
no test coverage detected