ggml_scale_inplace method
Pointer<ggml_tensor>
ggml_scale_inplace(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - 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,
);
}