Skip to content

Commit aaabe2e

Browse files
committed
Fill out missing entries in llama_model_type_name
1 parent 217d8d7 commit aaabe2e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

llama.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3769,14 +3769,19 @@ static std::string llama_model_ftype_name(llama_ftype ftype) {
37693769

37703770
static const char * llama_model_type_name(e_model type) {
37713771
switch (type) {
3772+
case MODEL_17M: return "17M";
37723773
case MODEL_22M: return "22M";
37733774
case MODEL_33M: return "33M";
37743775
case MODEL_109M: return "109M";
37753776
case MODEL_137M: return "137M";
3777+
case MODEL_270M: return "270M";
3778+
case MODEL_335M: return "335M";
3779+
case MODEL_450M: return "450M";
37763780
case MODEL_0_5B: return "0.5B";
37773781
case MODEL_1B: return "1B";
37783782
case MODEL_2B: return "2B";
37793783
case MODEL_3B: return "3B";
3784+
case MODEL_4B: return "4B";
37803785
case MODEL_7B: return "7B";
37813786
case MODEL_8B: return "8B";
37823787
case MODEL_12B: return "12B";

0 commit comments

Comments
 (0)