ggml_view_1d method
Pointer<ggml_tensor>
ggml_view_1d(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - int ne0,
- int offset,
Implementation
ffi.Pointer<ggml_tensor> ggml_view_1d(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int ne0,
int offset,
) {
return _ggml_view_1d(
ctx,
a,
ne0,
offset,
);
}