| 3484 | } |
| 3485 | |
| 3486 | GGML_API struct ggml_tensor * ggml_cont_3d( |
| 3487 | struct ggml_context * ctx, |
| 3488 | struct ggml_tensor * a, |
| 3489 | int64_t ne0, |
| 3490 | int64_t ne1, |
| 3491 | int64_t ne2) { |
| 3492 | return ggml_cont_4d(ctx, a, ne0, ne1, ne2, 1); |
| 3493 | } |
| 3494 | |
| 3495 | struct ggml_tensor * ggml_cont_4d( |
| 3496 | struct ggml_context * ctx, |
no test coverage detected