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