ggml_win_unpart method

Pointer<ggml_tensor> ggml_win_unpart(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int w0,
  4. int h0,
  5. 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,
  );
}