| 2544 | } |
| 2545 | |
| 2546 | struct ggml_tensor * ggml_new_tensor_3d( |
| 2547 | struct ggml_context * ctx, |
| 2548 | enum ggml_type type, |
| 2549 | int64_t ne0, |
| 2550 | int64_t ne1, |
| 2551 | int64_t ne2) { |
| 2552 | const int64_t ne[3] = { ne0, ne1, ne2 }; |
| 2553 | return ggml_new_tensor(ctx, type, 3, ne); |
| 2554 | } |
| 2555 | |
| 2556 | struct ggml_tensor * ggml_new_tensor_4d( |
| 2557 | struct ggml_context * ctx, |
no test coverage detected