| 2535 | } |
| 2536 | |
| 2537 | struct ggml_tensor * ggml_new_tensor_2d( |
| 2538 | struct ggml_context * ctx, |
| 2539 | enum ggml_type type, |
| 2540 | int64_t ne0, |
| 2541 | int64_t ne1) { |
| 2542 | const int64_t ne[2] = { ne0, ne1 }; |
| 2543 | return ggml_new_tensor(ctx, type, 2, ne); |
| 2544 | } |
| 2545 | |
| 2546 | struct ggml_tensor * ggml_new_tensor_3d( |
| 2547 | struct ggml_context * ctx, |
no test coverage detected