ggml_win_unpart method
Pointer<ggml_tensor>
ggml_win_unpart(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - int w0,
- int h0,
- int w,
Implementation
ffi.Pointer<ggml_tensor> ggml_win_unpart(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int w0,
int h0,
int w,
) {
return _ggml_win_unpart(
ctx,
a,
w0,
h0,
w,
);
}