Skip to content

Commit 3709961

Browse files
committed
[feat] add support for Ling Lite 2.0
1 parent 1c6ec2a commit 3709961

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/llama-model.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,6 +1816,7 @@ void llama_model::load_hparams(llama_model_loader & ml) {
18161816

18171817
switch (hparams.n_layer) {
18181818
case 20: type = LLM_TYPE_16B; break;
1819+
case 32: type = LLM_TYPE_100B; break;
18191820
default: type = LLM_TYPE_UNKNOWN;
18201821
}
18211822
} break;

src/llama-model.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ enum llm_type {
8080
LLM_TYPE_40B,
8181
LLM_TYPE_65B,
8282
LLM_TYPE_70B,
83+
LLM_TYPE_100B,
8384
LLM_TYPE_120B,
8485
LLM_TYPE_142B,
8586
LLM_TYPE_236B,

0 commit comments

Comments
 (0)