/src/llama.cpp/src/models/arwkv7.cpp
Line | Count | Source |
1 | | #include "models.h" |
2 | | |
3 | 0 | void llama_model_arwkv7::load_arch_hparams(llama_model_loader & ml) { |
4 | 0 | ml.get_key(LLM_KV_ATTENTION_LAYERNORM_EPS, hparams.f_norm_eps, false); |
5 | 0 | ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps, false); |
6 | 0 | ml.get_key(LLM_KV_WKV_HEAD_SIZE, hparams.wkv_head_size); |
7 | 0 | ml.get_key(LLM_KV_ATTENTION_DECAY_LORA_RANK, hparams.n_lora_decay); |
8 | 0 | ml.get_key(LLM_KV_ATTENTION_ICLR_LORA_RANK, hparams.n_lora_iclr); |
9 | 0 | ml.get_key(LLM_KV_ATTENTION_VALUE_RESIDUAL_MIX_LORA_RANK, hparams.n_lora_value_res_mix); |
10 | 0 | ml.get_key(LLM_KV_ATTENTION_GATE_LORA_RANK, hparams.n_lora_gate, false); |
11 | 0 | ml.get_key(LLM_KV_TOKEN_SHIFT_COUNT, hparams.token_shift_count, false); |
12 | |
|
13 | 0 | switch (hparams.n_layer()) { |
14 | 0 | case 12: |
15 | 0 | switch (hparams.n_embd) { |
16 | 0 | case 768: type = LLM_TYPE_190M; break; |
17 | 0 | default: type = LLM_TYPE_UNKNOWN; |
18 | 0 | } break; |
19 | 0 | case 24: |
20 | 0 | switch (hparams.n_embd) { |
21 | 0 | case 1024: type = LLM_TYPE_450M; break; |
22 | 0 | case 2048: type = LLM_TYPE_1_5B; break; |
23 | 0 | default: type = LLM_TYPE_UNKNOWN; |
24 | 0 | } break; |
25 | 0 | case 28: |
26 | 0 | switch (hparams.n_embd) { |
27 | 0 | case 1536: type = LLM_TYPE_1_5B; break; |
28 | 0 | case 3584: type = LLM_TYPE_7B; break; |
29 | 0 | default: type = LLM_TYPE_UNKNOWN; |
30 | 0 | } break; |
31 | 0 | case 32: |
32 | 0 | switch (hparams.n_embd) { |
33 | 0 | case 2560: type = LLM_TYPE_2_9B; break; |
34 | 0 | case 4096: type = LLM_TYPE_7B; break; |
35 | 0 | default: type = LLM_TYPE_UNKNOWN; |
36 | 0 | } break; |
37 | 0 | case 61: |
38 | 0 | switch (hparams.n_embd) { |
39 | 0 | case 4096: type = LLM_TYPE_14B; break; |
40 | 0 | default: type = LLM_TYPE_UNKNOWN; |
41 | 0 | } break; |
42 | 0 | default: type = LLM_TYPE_UNKNOWN; |
43 | 0 | } |
44 | 0 | } |
45 | | |
46 | 0 | void llama_model_arwkv7::load_arch_tensors(llama_model_loader &) { |
47 | 0 | LLAMA_LOAD_LOCALS; |
48 | |
|
49 | 0 | tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0); |
50 | | |
51 | | // output |
52 | 0 | output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0); |
53 | 0 | output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, 0); |
54 | |
|
55 | 0 | const int n_lora_decay = hparams.n_lora_decay; |
56 | 0 | const int n_lora_iclr = hparams.n_lora_iclr; |
57 | 0 | const int n_lora_value_res_mix = hparams.n_lora_value_res_mix; |
58 | 0 | const int n_lora_gate = hparams.n_lora_gate; |
59 | 0 | const int attn_hidden_size = n_embd; |
60 | |
|
61 | 0 | for (int i = 0; i < n_layer; ++i) { |
62 | 0 | auto & layer = layers[i]; |
63 | |
|
64 | 0 | layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0); |
65 | |
|
66 | 0 | layer.time_mix_w0 = create_tensor(tn(LLM_TENSOR_TIME_MIX_W0, "weight", i), {n_embd}, 0); |
67 | 0 | layer.time_mix_w1 = create_tensor(tn(LLM_TENSOR_TIME_MIX_W1, "weight", i), {n_embd, n_lora_decay}, 0); |
68 | 0 | layer.time_mix_w2 = create_tensor(tn(LLM_TENSOR_TIME_MIX_W2, "weight", i), {n_lora_decay, n_embd}, 0); |
69 | |
|
70 | 0 | layer.time_mix_a0 = create_tensor(tn(LLM_TENSOR_TIME_MIX_A0, "weight", i), {n_embd}, 0); |
71 | 0 | layer.time_mix_a1 = create_tensor(tn(LLM_TENSOR_TIME_MIX_A1, "weight", i), {n_embd, n_lora_iclr}, 0); |
72 | 0 | layer.time_mix_a2 = create_tensor(tn(LLM_TENSOR_TIME_MIX_A2, "weight", i), {n_lora_iclr, n_embd}, 0); |
73 | |
|
74 | 0 | if (i == 0) { |
75 | | // actually not used |
76 | 0 | layer.time_mix_v0 = create_tensor(tn(LLM_TENSOR_TIME_MIX_V0, "weight", i), {n_embd}, 0); |
77 | 0 | layer.time_mix_v1 = create_tensor(tn(LLM_TENSOR_TIME_MIX_V1, "weight", i), {n_embd, n_lora_iclr}, 0); |
78 | 0 | layer.time_mix_v2 = create_tensor(tn(LLM_TENSOR_TIME_MIX_V2, "weight", i), {n_lora_iclr, n_embd}, 0); |
79 | 0 | } else { |
80 | 0 | layer.time_mix_v0 = create_tensor(tn(LLM_TENSOR_TIME_MIX_V0, "weight", i), {n_embd}, 0); |
81 | 0 | layer.time_mix_v1 = create_tensor(tn(LLM_TENSOR_TIME_MIX_V1, "weight", i), {n_embd, n_lora_value_res_mix}, 0); |
82 | 0 | layer.time_mix_v2 = create_tensor(tn(LLM_TENSOR_TIME_MIX_V2, "weight", i), {n_lora_value_res_mix, n_embd}, 0); |
83 | 0 | } |
84 | |
|
85 | 0 | layer.time_mix_g1 = create_tensor(tn(LLM_TENSOR_TIME_MIX_G1, "weight", i), {n_embd, n_lora_gate}, TENSOR_NOT_REQUIRED); |
86 | 0 | layer.time_mix_g2 = create_tensor(tn(LLM_TENSOR_TIME_MIX_G2, "weight", i), {n_lora_gate, n_embd}, TENSOR_NOT_REQUIRED); |
87 | |
|
88 | 0 | try { |
89 | 0 | layer.time_mix_lerp_fused = create_tensor(tn(LLM_TENSOR_TIME_MIX_LERP_FUSED, "weight", i), {n_embd, 1, 1, 6}, 0); |
90 | 0 | } catch(std::runtime_error & e) { |
91 | | // ARWKV models may not have gate tensors |
92 | 0 | layer.time_mix_lerp_fused = create_tensor(tn(LLM_TENSOR_TIME_MIX_LERP_FUSED, "weight", i), {n_embd, 1, 1, 5}, 0); |
93 | 0 | } |
94 | |
|
95 | 0 | layer.time_mix_k_k = create_tensor(tn(LLM_TENSOR_TIME_MIX_K_K, "weight", i), {attn_hidden_size}, 0); |
96 | 0 | layer.time_mix_k_a = create_tensor(tn(LLM_TENSOR_TIME_MIX_K_A, "weight", i), {attn_hidden_size}, 0); |
97 | 0 | layer.time_mix_r_k = create_tensor(tn(LLM_TENSOR_TIME_MIX_R_K, "weight", i), {attn_hidden_size}, 0); |
98 | |
|
99 | 0 | layer.time_mix_key = create_tensor(tn(LLM_TENSOR_TIME_MIX_KEY, "weight", i), {attn_hidden_size, n_embd}, 0); |
100 | 0 | layer.time_mix_value = create_tensor(tn(LLM_TENSOR_TIME_MIX_VALUE, "weight", i), {attn_hidden_size, n_embd}, 0); |
101 | 0 | layer.time_mix_receptance = create_tensor(tn(LLM_TENSOR_TIME_MIX_RECEPTANCE, "weight", i), {attn_hidden_size, n_embd}, 0); |
102 | |
|
103 | 0 | layer.time_mix_ln = create_tensor(tn(LLM_TENSOR_TIME_MIX_LN, "weight", i), {n_embd}, TENSOR_NOT_REQUIRED); |
104 | 0 | layer.time_mix_ln_b = create_tensor(tn(LLM_TENSOR_TIME_MIX_LN, "bias", i), {n_embd}, TENSOR_NOT_REQUIRED); |
105 | 0 | layer.time_mix_output = create_tensor(tn(LLM_TENSOR_TIME_MIX_OUTPUT, "weight", i), {n_embd, attn_hidden_size}, 0); |
106 | |
|
107 | 0 | layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0); |
108 | |
|
109 | 0 | layer.ffn_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd, n_ff}, 0); |
110 | 0 | layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), { n_ff, n_embd}, 0); |
111 | 0 | layer.ffn_up = create_tensor(tn(LLM_TENSOR_FFN_UP, "weight", i), {n_embd, n_ff}, 0); |
112 | 0 | } |
113 | |
|
114 | 0 | } |
115 | | |
116 | 0 | std::unique_ptr<llm_graph_context> llama_model_arwkv7::build_arch_graph(const llm_graph_params & params) const { |
117 | 0 | return std::make_unique<graph>(*this, params); |
118 | 0 | } |
119 | | |
120 | 0 | llama_model_arwkv7::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_build_rwkv7_base(model, params) { |
121 | 0 | GGML_ASSERT(n_embd == hparams.n_embd_r()); |
122 | |
|
123 | 0 | ggml_tensor * cur; |
124 | 0 | ggml_tensor * inpL; |
125 | 0 | ggml_tensor * v_first = nullptr; |
126 | |
|
127 | 0 | inpL = build_inp_embd(model.tok_embd); |
128 | |
|
129 | 0 | auto * rs_inp = build_rs_inp(); |
130 | |
|
131 | 0 | const auto n_embd = hparams.n_embd; |
132 | 0 | const auto n_seq_tokens = ubatch.n_seq_tokens; |
133 | 0 | const auto n_seqs = ubatch.n_seqs; |
134 | |
|
135 | 0 | ggml_tensor * inp_out_ids = build_inp_out_ids(); |
136 | |
|
137 | 0 | for (int il = 0; il < n_layer; ++il) { |
138 | 0 | const llama_layer * layer = &model.layers[il]; |
139 | 0 | inpL = ggml_reshape_3d(ctx0, inpL, n_embd, n_seq_tokens, n_seqs); |
140 | |
|
141 | 0 | ggml_tensor * token_shift = build_rwkv_token_shift_load(rs_inp, ubatch, il); |
142 | |
|
143 | 0 | ggml_tensor * att_norm = build_norm(inpL, layer->attn_norm, layer->attn_norm_b, LLM_NORM_RMS, il); |
144 | 0 | cb(att_norm, "attn_norm", il); |
145 | |
|
146 | 0 | ggml_tensor * x_prev = ggml_concat( |
147 | 0 | ctx0, |
148 | 0 | token_shift, |
149 | 0 | ggml_view_3d(ctx0, att_norm, n_embd, n_seq_tokens - 1, n_seqs, att_norm->nb[1], att_norm->nb[2], 0), |
150 | 0 | 1 |
151 | 0 | ); |
152 | |
|
153 | 0 | cur = build_rwkv7_time_mix(rs_inp, att_norm, x_prev, v_first, ubatch, il); |
154 | |
|
155 | 0 | token_shift = ggml_view_3d(ctx0, att_norm, n_embd, 1, n_seqs, att_norm->nb[1], att_norm->nb[2], (n_seq_tokens-1)*n_embd*ggml_element_size(att_norm)); |
156 | 0 | ggml_build_forward_expand(gf, build_rwkv_token_shift_store(token_shift, ubatch, il)); |
157 | |
|
158 | 0 | ggml_tensor * ffn_inp = ggml_add(ctx0, cur, inpL); |
159 | 0 | cb(ffn_inp, "ffn_inp", il); |
160 | |
|
161 | 0 | cur = ggml_reshape_2d(ctx0, cur, n_embd, n_tokens); |
162 | 0 | ffn_inp = ggml_reshape_2d(ctx0, ffn_inp, n_embd, n_tokens); |
163 | |
|
164 | 0 | if (il == n_layer - 1 && inp_out_ids) { |
165 | 0 | cur = ggml_get_rows(ctx0, cur, inp_out_ids); |
166 | 0 | ffn_inp = ggml_get_rows(ctx0, ffn_inp, inp_out_ids); |
167 | 0 | } |
168 | | // feed-forward network |
169 | 0 | cur = build_norm(ffn_inp, |
170 | 0 | model.layers[il].ffn_norm, NULL, |
171 | 0 | LLM_NORM_RMS, il); |
172 | 0 | cb(cur, "ffn_norm", il); |
173 | |
|
174 | 0 | cur = build_ffn(cur, |
175 | 0 | model.layers[il].ffn_up, NULL, NULL, |
176 | 0 | model.layers[il].ffn_gate, NULL, NULL, |
177 | 0 | model.layers[il].ffn_down, NULL, NULL, |
178 | 0 | NULL, |
179 | 0 | LLM_FFN_SILU, LLM_FFN_PAR, il); |
180 | 0 | cb(cur, "ffn_out", il); |
181 | |
|
182 | 0 | cur = ggml_add(ctx0, cur, ffn_inp); |
183 | |
|
184 | 0 | cur = build_cvec(cur, il); |
185 | 0 | cb(cur, "l_out", il); |
186 | | |
187 | | // input for next layer |
188 | 0 | inpL = cur; |
189 | 0 | } |
190 | 0 | cur = inpL; |
191 | 0 | cur = build_norm(cur, model.output_norm, model.output_norm_b, LLM_NORM_RMS, -1); |
192 | |
|
193 | 0 | cb(cur, "result_norm", -1); |
194 | 0 | res->t_embd = cur; |
195 | |
|
196 | 0 | cur = build_lora_mm(model.output, cur, model.output_s); |
197 | |
|
198 | 0 | cb(cur, "result_output", -1); |
199 | 0 | res->t_logits = cur; |
200 | |
|
201 | 0 | ggml_build_forward_expand(gf, cur); |
202 | 0 | } |