Skip to content

Commit d62520e

Browse files
authored
Fix typos of IQ2_XXS and IQ3_XXS in llama.cpp (#5231)
1 parent 0168413 commit d62520e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llama.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2713,10 +2713,10 @@ static std::string llama_model_ftype_name(llama_ftype ftype) {
27132713
case LLAMA_FTYPE_MOSTLY_Q5_K_S: return "Q5_K - Small";
27142714
case LLAMA_FTYPE_MOSTLY_Q5_K_M: return "Q5_K - Medium";
27152715
case LLAMA_FTYPE_MOSTLY_Q6_K: return "Q6_K";
2716-
case LLAMA_FTYPE_MOSTLY_IQ2_XXS:return "IQ2_XSS - 2.0625 bpw";
2716+
case LLAMA_FTYPE_MOSTLY_IQ2_XXS:return "IQ2_XXS - 2.0625 bpw";
27172717
case LLAMA_FTYPE_MOSTLY_IQ2_XS: return "IQ2_XS - 2.3125 bpw";
27182718
case LLAMA_FTYPE_MOSTLY_Q3_K_XS:return "Q3_K - Extra small";
2719-
case LLAMA_FTYPE_MOSTLY_IQ3_XXS:return "IQ3_XSS - 3.0625 bpw";
2719+
case LLAMA_FTYPE_MOSTLY_IQ3_XXS:return "IQ3_XXS - 3.0625 bpw";
27202720

27212721
default: return "unknown, may not work";
27222722
}

0 commit comments

Comments
 (0)