ggml : minor coding style (#22308)
This commit is contained in:
parent
017f090442
commit
e583f3b4f5
|
|
@ -7656,7 +7656,7 @@ size_t ggml_quantize_chunk(
|
||||||
int64_t nrows,
|
int64_t nrows,
|
||||||
int64_t n_per_row,
|
int64_t n_per_row,
|
||||||
const float * imatrix) {
|
const float * imatrix) {
|
||||||
const int64_t n = (int64_t) nrows * n_per_row;
|
const int64_t n = nrows * n_per_row;
|
||||||
|
|
||||||
if (ggml_quantize_requires_imatrix(type)) {
|
if (ggml_quantize_requires_imatrix(type)) {
|
||||||
GGML_ASSERT(imatrix != NULL);
|
GGML_ASSERT(imatrix != NULL);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue