ggml_upscale method

Pointer<ggml_tensor> ggml_upscale(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int scale_factor
)

GeneralAiSpeechToTextLibraryWhisper Binding By General Corporation & Global Corporation & General Developer

Implementation

ffi.Pointer<ggml_tensor> ggml_upscale(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int scale_factor,
) {
  return _ggml_upscale(ctx, a, scale_factor);
}