ggml_quantize_chunk method

int ggml_quantize_chunk(
  1. int type,
  2. Pointer<Float> src,
  3. Pointer<Void> dst,
  4. int start,
  5. int nrows,
  6. int n_per_row,
  7. Pointer<Int64> hist,
  8. Pointer<Float> imatrix,
)

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,
  );
}