Skip to content

Commit

Permalink
Add line
Browse files Browse the repository at this point in the history
  • Loading branch information
S committed Apr 5, 2024
1 parent f3532ff commit ec613b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -20335,7 +20335,7 @@ size_t ggml_quantize_chunk(
int nrows,
int n_per_row,
const float * imatrix) {
const int n = nrows * n_per_row;
const size_t n = (size_t) nrows * n_per_row;

if (ggml_quantize_requires_imatrix(type)) {
GGML_ASSERT(imatrix != NULL);
Expand Down

0 comments on commit ec613b8

Please sign in to comment.