ggml_scale_inplace method

Pointer<ggml_tensor> ggml_scale_inplace(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. double s
)

Implementation

ffi.Pointer<ggml_tensor> ggml_scale_inplace(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  double s,
) {
  return _ggml_scale_inplace(
    ctx,
    a,
    s,
  );
}