| 3623 | // ggml_view_1d |
| 3624 | |
| 3625 | struct ggml_tensor * ggml_view_1d( |
| 3626 | struct ggml_context * ctx, |
| 3627 | struct ggml_tensor * a, |
| 3628 | int64_t ne0, |
| 3629 | size_t offset) { |
| 3630 | struct ggml_tensor * result = ggml_view_impl(ctx, a, 1, &ne0, offset); |
| 3631 | |
| 3632 | return result; |
| 3633 | } |
| 3634 | |
| 3635 | // ggml_view_2d |
| 3636 |