ggml_reshape_4d method
Pointer<ggml_tensor>
ggml_reshape_4d(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - int ne0,
- int ne1,
- int ne2,
- int ne3,
Implementation
ffi.Pointer<ggml_tensor> ggml_reshape_4d(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int ne0,
int ne1,
int ne2,
int ne3,
) {
return _ggml_reshape_4d(
ctx,
a,
ne0,
ne1,
ne2,
ne3,
);
}