We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e80323 commit 44ea7ddCopy full SHA for 44ea7dd
tools/imatrix/imatrix.cpp
@@ -938,9 +938,9 @@ bool IMatrixCollector::load_imatrix(const char * file_name) {
938
939
for (const auto & sc : sums_counts_for) {
940
const std::string & name = sc.first;
941
+ const struct ggml_tensor * in_sum = std::get<2>(sc.second);
942
const struct ggml_tensor * in_sum2 = std::get<0>(sc.second);
943
const struct ggml_tensor * counts = std::get<1>(sc.second);
- const struct ggml_tensor * in_sum = std::get<2>(sc.second);
944
945
if (!in_sum2 || !counts) {
946
LOG_ERR("%s: mismatched sums and counts for %s\n", __func__, name.c_str());
0 commit comments