Skip to content

Commit f4affdc

Browse files
committed
Changed the default value for REQUIRED_GOOD_EXPERT_PERCENTAGE from 95 to 90 as it seems more reasonable and Qwen3-30B-A3B will otherwise always be missing tensors
1 parent 7c4f834 commit f4affdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/imatrix/imatrix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ void IMatrixCollector::save_imatrix(int ncall) const {
241241

242242
// Retrieve the REQUIRED_GOOD_EXPERT_PERCENTAGE from the environment
243243
const char* required_good_expert_percentage_env_value = getenv("REQUIRED_GOOD_EXPERT_PERCENTAGE");
244-
double required_good_expert_percentage = required_good_expert_percentage_env_value ? std::clamp(std::stod(required_good_expert_percentage_env_value), 0.0, 100.0) : 95.0;
244+
double required_good_expert_percentage = required_good_expert_percentage_env_value ? std::clamp(std::stod(required_good_expert_percentage_env_value), 0.0, 100.0) : 90.0;
245245

246246
bool is_first = true; // for printing
247247
for (const auto & kv : m_stats) {

0 commit comments

Comments
 (0)