ggml_scale_bias method
Pointer<ggml_tensor>
ggml_scale_bias(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - double s,
- double b,
Implementation
ffi.Pointer<ggml_tensor> ggml_scale_bias(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
double s,
double b,
) {
return _ggml_scale_bias(
ctx,
a,
s,
b,
);
}