ggml_view_2d method
Pointer<ggml_tensor>
ggml_view_2d(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - int ne0,
- int ne1,
- int nb1,
- int offset,
Implementation
ffi.Pointer<ggml_tensor> ggml_view_2d(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int ne0,
int ne1,
int nb1,
int offset,
) {
return _ggml_view_2d(
ctx,
a,
ne0,
ne1,
nb1,
offset,
);
}