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 c393733 commit 269de86Copy full SHA for 269de86
llama.cpp
@@ -12089,7 +12089,6 @@ enum llama_rope_type llama_rope_type(const struct llama_model * model) {
12089
case LLM_ARCH_ORION:
12090
case LLM_ARCH_INTERNLM2:
12091
case LLM_ARCH_MINICPM:
12092
- case LLM_ARCH_GEMMA:
12093
return LLAMA_ROPE_TYPE_NORM;
12094
12095
// the pairs of head values are offset by n_rot/2
@@ -12101,6 +12100,7 @@ enum llama_rope_type llama_rope_type(const struct llama_model * model) {
12101
12100
case LLM_ARCH_QWEN:
12102
case LLM_ARCH_QWEN2:
12103
case LLM_ARCH_PHI2:
+ case LLM_ARCH_GEMMA:
12104
return LLAMA_ROPE_TYPE_NEOX;
12105
12106
// all model arches should be listed explicitly here
0 commit comments