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