Make ooae on by default and add to llama-bench (#842)

Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
This commit is contained in:
Kawrakow
2025-10-20 08:32:41 +03:00
committed by GitHub
parent 2f5dae22e1
commit 1789de5994
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;
}