| 4441 | } |
| 4442 | |
| 4443 | GGML_API struct ggml_tensor * ggml_cont_3d( |
| 4444 | struct ggml_context * ctx, |
| 4445 | struct ggml_tensor * a, |
| 4446 | int64_t ne0, |
| 4447 | int64_t ne1, |
| 4448 | int64_t ne2) { |
| 4449 | return ggml_cont_4d(ctx, a, ne0, ne1, ne2, 1); |
| 4450 | } |
| 4451 | |
| 4452 | struct ggml_tensor * ggml_cont_4d( |
| 4453 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected