Skip to content

Commit 2d79a70

Browse files
committed
quantize : use unused imatrix chunk_size with LLAMA_TRACE
1 parent 8c13e16 commit 2d79a70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/quantize/quantize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ static int load_imatrix(const std::string & imatrix_file, std::string & imatrix_
220220
}
221221
}
222222
if (getenv("LLAMA_TRACE")) {
223-
printf("%s: loaded data (size = %6d, n_tokens = %6d) for '%s'\n", __func__, int(e.size()), int(max_count), name.c_str());
223+
printf("%s: loaded data (size = %6d, n_tokens = %6d, n_chunks = %6d) for '%s'\n", __func__, int(e.size()), int(max_count), int(max_count / chunk_size), name.c_str());
224224
}
225225
}
226226

0 commit comments

Comments
 (0)