ggml_quantize_chunk method

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

Implementation

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