| 3476 | } |
| 3477 | |
| 3478 | GGML_API struct ggml_tensor * ggml_cont_2d( |
| 3479 | struct ggml_context * ctx, |
| 3480 | struct ggml_tensor * a, |
| 3481 | int64_t ne0, |
| 3482 | int64_t ne1) { |
| 3483 | return ggml_cont_4d(ctx, a, ne0, ne1, 1, 1); |
| 3484 | } |
| 3485 | |
| 3486 | GGML_API struct ggml_tensor * ggml_cont_3d( |
| 3487 | struct ggml_context * ctx, |