Skip to content

Commit 930c506

Browse files
jartteleprint-me
authored andcommitted
llama : add missing model type names (ggml-org#7445)
1 parent 24bdeaa commit 930c506

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
@@ -3775,14 +3775,17 @@ static std::string llama_model_ftype_name(llama_ftype ftype) {
37753775

37763776
static const char * llama_model_type_name(e_model type) {
37773777
switch (type) {
3778+
case MODEL_17M: return "17M";
37783779
case MODEL_22M: return "22M";
37793780
case MODEL_33M: return "33M";
37803781
case MODEL_109M: return "109M";
37813782
case MODEL_137M: return "137M";
3783+
case MODEL_335M: return "335M";
37823784
case MODEL_0_5B: return "0.5B";
37833785
case MODEL_1B: return "1B";
37843786
case MODEL_2B: return "2B";
37853787
case MODEL_3B: return "3B";
3788+
case MODEL_4B: return "4B";
37863789
case MODEL_7B: return "7B";
37873790
case MODEL_8B: return "8B";
37883791
case MODEL_12B: return "12B";

0 commit comments

Comments
 (0)