Skip to content

Commit 03d8900

Browse files
authored
llama : add missing model type names (#7445)
1 parent 9b3d833 commit 03d8900

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

llama.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3771,14 +3771,17 @@ static std::string llama_model_ftype_name(llama_ftype ftype) {
37713771

37723772
static const char * llama_model_type_name(e_model type) {
37733773
switch (type) {
3774+
case MODEL_17M: return "17M";
37743775
case MODEL_22M: return "22M";
37753776
case MODEL_33M: return "33M";
37763777
case MODEL_109M: return "109M";
37773778
case MODEL_137M: return "137M";
3779+
case MODEL_335M: return "335M";
37783780
case MODEL_0_5B: return "0.5B";
37793781
case MODEL_1B: return "1B";
37803782
case MODEL_2B: return "2B";
37813783
case MODEL_3B: return "3B";
3784+
case MODEL_4B: return "4B";
37823785
case MODEL_7B: return "7B";
37833786
case MODEL_8B: return "8B";
37843787
case MODEL_12B: return "12B";

0 commit comments

Comments
 (0)