/src/llama.cpp/src/models/minimax-m2.cpp
Line | Count | Source |
1 | | #include "models.h" |
2 | | |
3 | 0 | void llama_model_minimax_m2::load_arch_hparams(llama_model_loader & ml) { |
4 | 0 | ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps); |
5 | 0 | ml.get_key(LLM_KV_EXPERT_FEED_FORWARD_LENGTH, hparams.n_ff_exp); |
6 | 0 | ml.get_key(LLM_KV_EXPERT_GATING_FUNC, hparams.expert_gating_func, false); |
7 | |
|
8 | 0 | switch (hparams.n_layer()) { |
9 | 0 | case 62: type = LLM_TYPE_230B_A10B; break; |
10 | 0 | default: type = LLM_TYPE_UNKNOWN; |
11 | 0 | } |
12 | 0 | } |
13 | | |
14 | 0 | void llama_model_minimax_m2::load_arch_tensors(llama_model_loader &) { |
15 | 0 | LLAMA_LOAD_LOCALS; |
16 | |
|
17 | 0 | tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0); |
18 | | |
19 | | // output |
20 | 0 | output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0); |
21 | 0 | output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, 0); |
22 | |
|
23 | 0 | for (int i = 0; i < n_layer; ++i) { |
24 | 0 | auto & layer = layers[i]; |
25 | |
|
26 | 0 | create_tensor_qkv(layer, i, n_embd, n_embd_head_k * n_head, n_embd_gqa, n_embd_gqa, 0); |
27 | 0 | layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), { n_embd_head_k * n_head, n_embd }, 0); |
28 | |
|
29 | 0 | layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0); |
30 | 0 | layer.attn_q_norm = create_tensor(tn(LLM_TENSOR_ATTN_Q_NORM, "weight", i), {n_embd_head_k * n_head}, 0); |
31 | 0 | layer.attn_k_norm = create_tensor(tn(LLM_TENSOR_ATTN_K_NORM, "weight", i), {n_embd_k_gqa}, 0); |
32 | |
|
33 | 0 | layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0); |
34 | |
|
35 | 0 | layer.ffn_gate_inp = create_tensor(tn(LLM_TENSOR_FFN_GATE_INP, "weight", i), {n_embd, n_expert}, 0); |
36 | 0 | layer.ffn_gate_exps = create_tensor(tn(LLM_TENSOR_FFN_GATE_EXPS, "weight", i), {n_embd, n_ff, n_expert}, 0); |
37 | 0 | layer.ffn_down_exps = create_tensor(tn(LLM_TENSOR_FFN_DOWN_EXPS, "weight", i), {n_ff, n_embd, n_expert}, 0); |
38 | 0 | layer.ffn_up_exps = create_tensor(tn(LLM_TENSOR_FFN_UP_EXPS, "weight", i), {n_embd, n_ff, n_expert}, 0); |
39 | 0 | layer.ffn_exp_probs_b = create_tensor(tn(LLM_TENSOR_FFN_EXP_PROBS_B, "bias", i), {n_expert}, 0); |
40 | 0 | } |
41 | 0 | } |
42 | | |
43 | 0 | std::unique_ptr<llm_graph_context> llama_model_minimax_m2::build_arch_graph(const llm_graph_params & params) const { |
44 | 0 | return std::make_unique<graph>(*this, params); |
45 | 0 | } |
46 | | |
47 | 0 | llama_model_minimax_m2::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) { |
48 | 0 | const int64_t n_embd_head = hparams.n_embd_head_v(); |
49 | |
|
50 | 0 | GGML_ASSERT(n_embd_head == hparams.n_embd_head_k()); |
51 | | // GGML_ASSERT(n_embd_head == n_rot); this is wrong in case of minimax, head_dim = 128, n_rot = 64 |
52 | |
|
53 | 0 | ggml_tensor * cur; |
54 | 0 | ggml_tensor * inpL; |
55 | |
|
56 | 0 | inpL = build_inp_embd(model.tok_embd); |
57 | |
|
58 | 0 | ggml_tensor * inp_pos = build_inp_pos(); |
59 | 0 | auto inp_attn = build_attn_inp_kv(); |
60 | 0 | ggml_tensor * inp_out_ids = build_inp_out_ids(); |
61 | |
|
62 | 0 | for (int il = 0; il < n_layer; ++il) { |
63 | 0 | res->t_layer_inp[il] = inpL; |
64 | |
|
65 | 0 | ggml_tensor * inpSA = inpL; |
66 | |
|
67 | 0 | cur = inpL; |
68 | | |
69 | | // self_attention |
70 | 0 | { |
71 | 0 | cur = build_norm(inpL, model.layers[il].attn_norm, NULL, LLM_NORM_RMS, il); |
72 | 0 | cb(cur, "attn_norm", il); |
73 | | |
74 | | // compute Q and K and RoPE them |
75 | 0 | ggml_tensor * Qcur = build_lora_mm(model.layers[il].wq, cur); |
76 | 0 | cb(Qcur, "Qcur", il); |
77 | |
|
78 | 0 | ggml_tensor * Kcur = build_lora_mm(model.layers[il].wk, cur); |
79 | 0 | cb(Kcur, "Kcur", il); |
80 | |
|
81 | 0 | ggml_tensor * Vcur = build_lora_mm(model.layers[il].wv, cur); |
82 | 0 | cb(Vcur, "Vcur", il); |
83 | |
|
84 | 0 | Qcur = build_norm(Qcur, model.layers[il].attn_q_norm, NULL, |
85 | 0 | LLM_NORM_RMS, il); |
86 | 0 | cb(Qcur, "Qcur_normed", il); |
87 | |
|
88 | 0 | Kcur = build_norm(Kcur, model.layers[il].attn_k_norm, NULL, |
89 | 0 | LLM_NORM_RMS, il); |
90 | 0 | cb(Kcur, "Kcur_normed", il); |
91 | |
|
92 | 0 | Qcur = ggml_reshape_3d(ctx0, Qcur, n_embd_head, n_head, n_tokens); |
93 | 0 | Kcur = ggml_reshape_3d(ctx0, Kcur, n_embd_head, n_head_kv, n_tokens); |
94 | 0 | Vcur = ggml_reshape_3d(ctx0, Vcur, n_embd_head, n_head_kv, n_tokens); |
95 | |
|
96 | 0 | Qcur = ggml_rope_ext( |
97 | 0 | ctx0, Qcur, inp_pos, nullptr, |
98 | 0 | n_rot, rope_type, n_ctx_orig, freq_base, freq_scale, |
99 | 0 | ext_factor, attn_factor, beta_fast, beta_slow |
100 | 0 | ); |
101 | |
|
102 | 0 | Kcur = ggml_rope_ext( |
103 | 0 | ctx0, Kcur, inp_pos, nullptr, |
104 | 0 | n_rot, rope_type, n_ctx_orig, freq_base, freq_scale, |
105 | 0 | ext_factor, attn_factor, beta_fast, beta_slow |
106 | 0 | ); |
107 | |
|
108 | 0 | cb(Qcur, "Qcur", il); |
109 | 0 | cb(Kcur, "Kcur", il); |
110 | 0 | cb(Vcur, "Vcur", il); |
111 | |
|
112 | 0 | cur = build_attn(inp_attn, |
113 | 0 | model.layers[il].wo, NULL, model.layers[il].wo_s, |
114 | 0 | Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f/sqrtf(float(n_embd_head)), il); |
115 | 0 | } |
116 | |
|
117 | 0 | if (il == n_layer - 1 && inp_out_ids) { |
118 | 0 | cur = ggml_get_rows(ctx0, cur, inp_out_ids); |
119 | 0 | inpSA = ggml_get_rows(ctx0, inpSA, inp_out_ids); |
120 | 0 | } |
121 | |
|
122 | 0 | ggml_tensor * ffn_inp = ggml_add(ctx0, cur, inpSA); |
123 | 0 | cb(ffn_inp, "ffn_inp", il); |
124 | | |
125 | | // MoE branch |
126 | 0 | cur = build_norm(ffn_inp, |
127 | 0 | model.layers[il].ffn_norm, NULL, |
128 | 0 | LLM_NORM_RMS, il); |
129 | 0 | cb(cur, "ffn_norm", il); |
130 | |
|
131 | 0 | cur = build_moe_ffn(cur, |
132 | 0 | model.layers[il].ffn_gate_inp, |
133 | 0 | model.layers[il].ffn_up_exps, |
134 | 0 | model.layers[il].ffn_gate_exps, |
135 | 0 | model.layers[il].ffn_down_exps, |
136 | 0 | model.layers[il].ffn_exp_probs_b, |
137 | 0 | n_expert, n_expert_used, |
138 | 0 | LLM_FFN_SILU, true, |
139 | 0 | hparams.expert_weights_scale, |
140 | 0 | (llama_expert_gating_func_type) hparams.expert_gating_func, |
141 | 0 | il); |
142 | 0 | cb(cur, "ffn_moe_out", il); |
143 | |
|
144 | 0 | cur = ggml_add(ctx0, cur, ffn_inp); |
145 | |
|
146 | 0 | cur = build_cvec(cur, il); |
147 | 0 | cb(cur, "l_out", il); |
148 | | |
149 | | // input for next layer |
150 | 0 | inpL = cur; |
151 | 0 | } |
152 | |
|
153 | 0 | cur = inpL; |
154 | |
|
155 | 0 | cur = build_norm(cur, |
156 | 0 | model.output_norm, NULL, |
157 | 0 | LLM_NORM_RMS, -1); |
158 | |
|
159 | 0 | cb(cur, "result_norm", -1); |
160 | 0 | res->t_embd = cur; |
161 | | |
162 | | // lm_head |
163 | 0 | cur = build_lora_mm(model.output, cur, model.output_s); |
164 | |
|
165 | 0 | cb(cur, "result_output", -1); |
166 | 0 | res->t_logits = cur; |
167 | |
|
168 | 0 | ggml_build_forward_expand(gf, cur); |
169 | 0 | } |