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 c9ccbec commit 6837130Copy full SHA for 6837130
src/llama-hparams.h
@@ -201,9 +201,6 @@ struct llama_hparams {
201
202
uint32_t n_pos_per_embd() const;
203
204
- // for NoPE interval
205
- uint32_t no_rope_layer_interval = 0;
206
-
207
bool is_swa(uint32_t il) const;
208
};
209
src/llama-model.cpp
@@ -15575,7 +15575,6 @@ llama_rope_type llama_model_rope_type(const llama_model * model) {
15575
case LLM_ARCH_ERNIE4_5:
15576
return LLAMA_ROPE_TYPE_NORM;
15577
15578
15579
// the pairs of head values are offset by n_rot/2
15580
case LLM_ARCH_FALCON:
15581
case LLM_ARCH_GROK:
0 commit comments