| 4631 | // ggml_view_1d |
| 4632 | |
| 4633 | struct ggml_tensor * ggml_view_1d( |
| 4634 | struct ggml_context * ctx, |
| 4635 | struct ggml_tensor * a, |
| 4636 | int64_t ne0, |
| 4637 | size_t offset) { |
| 4638 | |
| 4639 | struct ggml_tensor * result = ggml_view_impl(ctx, a, 1, &ne0, offset); |
| 4640 | |
| 4641 | return result; |
| 4642 | } |
| 4643 | |
| 4644 | // ggml_view_2d |
| 4645 |