ggml_fill_inplace method
Pointer<ggml_tensor>
ggml_fill_inplace(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - double c
Implementation
ffi.Pointer<ggml_tensor> ggml_fill_inplace(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
double c,
) {
return _ggml_fill_inplace(
ctx,
a,
c,
);
}