Skip to content

Commit 59917d3

Browse files
authored
minor : fix lint issues (#24165)
1 parent 7acb4e8 commit 59917d3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/models/exaone-moe.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void llama_model_exaone_moe::load_arch_hparams(llama_model_loader & ml) {
2525

2626
switch (hparams.n_layer()) {
2727
case 32: type = LLM_TYPE_30B_A3B; break;
28-
case 48: type = LLM_TYPE_235B_A22B; break;
28+
case 48: type = LLM_TYPE_235B_A22B; break;
2929
default: type = LLM_TYPE_UNKNOWN;
3030
}
3131
}

src/models/glm4-moe.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ void llama_model_glm4_moe::load_arch_hparams(llama_model_loader & ml) {
2424
GGML_ASSERT(hparams.n_layer_nextn < hparams.n_layer_all && "n_layer_nextn must be < n_layer_impl");
2525

2626
switch (hparams.n_layer()) {
27-
case 46: type = LLM_TYPE_106B_A12B; break; // GLM-4.5-Air
28-
case 48: type = LLM_TYPE_102B_A12B; break; // Solar Open
29-
case 92: type = LLM_TYPE_355B_A32B; break; // GLM-4.5
27+
case 46: type = LLM_TYPE_106B_A12B; break; // GLM-4.5-Air
28+
case 48: type = LLM_TYPE_102B_A12B; break; // Solar Open
29+
case 92: type = LLM_TYPE_355B_A32B; break; // GLM-4.5
3030
default: type = LLM_TYPE_UNKNOWN;
3131
}
3232
}

0 commit comments

Comments
 (0)