ggml_quantize_chunk method
Implementation
int ggml_quantize_chunk(
int type,
ffi.Pointer<ffi.Float> src,
ffi.Pointer<ffi.Void> dst,
int start,
int nrows,
int n_per_row,
ffi.Pointer<ffi.Int64> hist,
ffi.Pointer<ffi.Float> imatrix,
) {
return _ggml_quantize_chunk(
type,
src,
dst,
start,
nrows,
n_per_row,
hist,
imatrix,
);
}