/src/llama.cpp/src/models/talkie.cpp
Line | Count | Source |
1 | | #include "models.h" |
2 | | |
3 | 0 | void llama_model_talkie::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_LOGIT_SCALE, hparams.f_logit_scale); |
6 | |
|
7 | 0 | switch (hparams.n_layer()) { |
8 | 0 | case 40: type = LLM_TYPE_13B; break; |
9 | 0 | default: type = LLM_TYPE_UNKNOWN; |
10 | 0 | } |
11 | 0 | } |
12 | | |
13 | 0 | void llama_model_talkie::load_arch_tensors(llama_model_loader &) { |
14 | 0 | LLAMA_LOAD_LOCALS; |
15 | |
|
16 | 0 | tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0); |
17 | 0 | output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, 0); |
18 | |
|
19 | 0 | for (int i = 0; i < n_layer; ++i) { |
20 | 0 | auto & layer = layers[i]; |
21 | |
|
22 | 0 | create_tensor_qkv(layer, i, n_embd, n_embd_head_k * n_head, n_embd_gqa, n_embd_gqa, 0); |
23 | 0 | layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd_head_k * n_head, n_embd}, 0); |
24 | | |
25 | | // no k gain |
26 | 0 | layer.attn_q_norm = create_tensor(tn(LLM_TENSOR_ATTN_Q_NORM, "weight", i), {1, n_head}, 0); |
27 | |
|
28 | 0 | layer.ffn_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd, n_ff}, 0); |
29 | 0 | layer.ffn_up = create_tensor(tn(LLM_TENSOR_FFN_UP, "weight", i), {n_embd, n_ff}, 0); |
30 | 0 | layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {n_ff, n_embd}, 0); |
31 | |
|
32 | 0 | layer.out_scale = create_tensor(tn(LLM_TENSOR_LAYER_OUT_SCALE, "weight", i), {1}, 0); |
33 | 0 | } |
34 | 0 | } |
35 | | |
36 | 0 | std::unique_ptr<llm_graph_context> llama_model_talkie::build_arch_graph(const llm_graph_params & params) const { |
37 | 0 | return std::make_unique<graph>(*this, params); |
38 | 0 | } |
39 | | |
40 | 0 | llama_model_talkie::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) { |
41 | 0 | const int64_t n_embd_head = hparams.n_embd_head_k(); |
42 | |
|
43 | 0 | GGML_ASSERT(n_embd_head == hparams.n_embd_head_v()); |
44 | 0 | GGML_ASSERT(n_embd_head == n_rot); |
45 | |
|
46 | 0 | ggml_tensor * cur; |
47 | 0 | ggml_tensor * inpL; |
48 | |
|
49 | 0 | inpL = build_inp_embd(model.tok_embd); |
50 | 0 | inpL = build_norm(inpL, nullptr, nullptr, LLM_NORM_RMS, -1); |
51 | 0 | cb(inpL, "inp_norm", -1); |
52 | |
|
53 | 0 | ggml_tensor * embd_skip = inpL; |
54 | | |
55 | | // inp_pos - contains the positions |
56 | 0 | ggml_tensor * inp_pos = build_inp_pos(); |
57 | |
|
58 | 0 | auto * inp_attn = build_attn_inp_kv(); |
59 | |
|
60 | 0 | ggml_tensor * inp_out_ids = build_inp_out_ids(); |
61 | |
|
62 | 0 | const float kq_scale = 1.0f / sqrtf(float(n_embd_head)); |
63 | |
|
64 | 0 | for (int il = 0; il < n_layer; ++il) { |
65 | 0 | ggml_tensor * inpSA = inpL; |
66 | 0 | ggml_tensor * inp_skip = embd_skip; |
67 | |
|
68 | 0 | cur = build_norm(inpL, nullptr, nullptr, LLM_NORM_RMS, il); |
69 | 0 | cb(cur, "attn_norm", il); |
70 | | |
71 | | // self-attention |
72 | 0 | { |
73 | 0 | auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur, |
74 | 0 | n_embd_head, n_head, n_head_kv, il); |
75 | |
|
76 | 0 | Qcur = ggml_rope_ext( |
77 | 0 | ctx0, Qcur, inp_pos, nullptr, |
78 | 0 | n_rot, rope_type, n_ctx_orig, freq_base, freq_scale, |
79 | 0 | ext_factor, attn_factor, beta_fast, beta_slow); |
80 | |
|
81 | 0 | Kcur = ggml_rope_ext( |
82 | 0 | ctx0, Kcur, inp_pos, nullptr, |
83 | 0 | n_rot, rope_type, n_ctx_orig, freq_base, freq_scale, |
84 | 0 | ext_factor, attn_factor, beta_fast, beta_slow); |
85 | | |
86 | | // reference applies qknorm after rope |
87 | 0 | Qcur = build_norm(Qcur, model.layers[il].attn_q_norm, nullptr, LLM_NORM_RMS, il); |
88 | 0 | cb(Qcur, "Qcur_norm", il); |
89 | |
|
90 | 0 | Kcur = build_norm(Kcur, nullptr, nullptr, LLM_NORM_RMS, il); |
91 | 0 | cb(Kcur, "Kcur_norm", il); |
92 | |
|
93 | 0 | cb(Vcur, "Vcur", il); |
94 | |
|
95 | 0 | cur = build_attn(inp_attn, |
96 | 0 | model.layers[il].wo, nullptr, model.layers[il].wo_s, |
97 | 0 | Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, kq_scale, il); |
98 | 0 | cb(cur, "attn_out", il); |
99 | 0 | } |
100 | |
|
101 | 0 | if (il == n_layer - 1 && inp_out_ids) { |
102 | 0 | cur = ggml_get_rows(ctx0, cur, inp_out_ids); |
103 | 0 | inpSA = ggml_get_rows(ctx0, inpSA, inp_out_ids); |
104 | 0 | inp_skip = ggml_get_rows(ctx0, inp_skip, inp_out_ids); |
105 | 0 | } |
106 | |
|
107 | 0 | ggml_tensor * ffn_inp = ggml_add(ctx0, cur, inpSA); |
108 | 0 | cb(ffn_inp, "ffn_inp", il); |
109 | |
|
110 | 0 | cur = build_norm(ffn_inp, nullptr, nullptr, LLM_NORM_RMS, il); |
111 | 0 | cb(cur, "ffn_norm", il); |
112 | |
|
113 | 0 | cur = build_ffn(cur, |
114 | 0 | model.layers[il].ffn_up, nullptr, nullptr, |
115 | 0 | model.layers[il].ffn_gate, nullptr, nullptr, |
116 | 0 | model.layers[il].ffn_down, nullptr, model.layers[il].ffn_down_s, |
117 | 0 | nullptr, |
118 | 0 | LLM_FFN_SILU, LLM_FFN_PAR, il); |
119 | 0 | cb(cur, "ffn_out", il); |
120 | |
|
121 | 0 | cur = ggml_add(ctx0, cur, ffn_inp); |
122 | |
|
123 | 0 | ggml_tensor * skip = ggml_mul(ctx0, inp_skip, model.layers[il].out_scale); |
124 | 0 | cb(skip, "embd_skip", il); |
125 | |
|
126 | 0 | cur = ggml_add(ctx0, cur, skip); |
127 | |
|
128 | 0 | cur = build_cvec(cur, il); |
129 | 0 | cb(cur, "l_out", il); |
130 | | |
131 | | // input for next layer |
132 | 0 | inpL = cur; |
133 | 0 | } |
134 | |
|
135 | 0 | cur = inpL; |
136 | |
|
137 | 0 | cur = build_norm(cur, nullptr, nullptr, LLM_NORM_RMS, -1); |
138 | 0 | cb(cur, "result_norm", -1); |
139 | |
|
140 | 0 | res->t_embd = cur; |
141 | |
|
142 | 0 | cur = build_lora_mm(model.output, cur); |
143 | 0 | cur = ggml_scale(ctx0, cur, hparams.f_logit_scale); |
144 | 0 | cb(cur, "result_output", -1); |
145 | |
|
146 | 0 | res->t_logits = cur; |
147 | |
|
148 | 0 | ggml_build_forward_expand(gf, cur); |
149 | 0 | } |