Make ooae on by default and add to llama-bench

This commit is contained in:
Iwan Kawrakow
2025-10-20 07:29:58 +03:00
parent 2f5dae22e1
commit 83ab55bd5b
3 changed files with 31 additions and 5 deletions

View File

@@ -1390,7 +1390,7 @@ bool gpt_params_find_arg(int argc, char ** argv, const std::string & arg, gpt_pa
}
return true;
}
if (arg == "--offload-only-active-experts" || arg == "-ooae") {
if (arg == "--no-offload-only-active-experts" || arg == "-no-ooae") {
params.only_active_exps = true;
return true;
}