mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-02-23 22:54:10 +00:00
Disable some fusion and make rope cahe off by default
This commit is contained in:
@@ -1106,8 +1106,8 @@ bool gpt_params_find_arg(int argc, char ** argv, const std::string & arg, gpt_pa
|
||||
params.fused_mmad = false;
|
||||
return true;
|
||||
}
|
||||
if (arg == "-no-rcache" || arg == "--no-rope-cache") {
|
||||
params.rope_cache = false;
|
||||
if (arg == "-rcache" || arg == "--rope-cache") {
|
||||
params.rope_cache = true;
|
||||
return true;
|
||||
}
|
||||
if (arg == "-ser" || arg == "--smart-expert-reduction") {
|
||||
|
||||
Reference in New Issue
Block a user