/src/llama.cpp/src/models/bloom.cpp
Line | Count | Source |
1 | | #include "models.h" |
2 | | |
3 | 0 | void llama_model_bloom::load_arch_hparams(llama_model_loader & ml) { |
4 | 0 | ml.get_key(LLM_KV_ATTENTION_LAYERNORM_EPS, hparams.f_norm_eps); |
5 | |
|
6 | 0 | switch (hparams.n_layer()) { |
7 | 0 | case 24: type = LLM_TYPE_1B; break; |
8 | 0 | case 30: |
9 | 0 | switch (hparams.n_embd) { |
10 | 0 | case 2560: type = LLM_TYPE_3B; break; |
11 | 0 | case 4096: type = LLM_TYPE_7B; break; |
12 | 0 | default: type = LLM_TYPE_UNKNOWN; |
13 | 0 | } break; |
14 | 0 | default: type = LLM_TYPE_UNKNOWN; |
15 | 0 | } |
16 | | |
17 | | // TODO: become GGUF KV parameter |
18 | 0 | hparams.f_max_alibi_bias = 8.0f; |
19 | 0 | } |
20 | | |
21 | 0 | void llama_model_bloom::load_arch_tensors(llama_model_loader &) { |
22 | 0 | LLAMA_LOAD_LOCALS; |
23 | |
|
24 | 0 | tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0); |
25 | 0 | tok_norm = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD_NORM, "weight", 0), {n_embd}, 0); |
26 | 0 | tok_norm_b = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD_NORM, "bias", 0), {n_embd}, 0); |
27 | | |
28 | | // output |
29 | 0 | output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0); |
30 | 0 | output_norm_b = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "bias"), {n_embd}, 0); |
31 | 0 | output = create_tensor(tn(LLM_TENSOR_OUTPUT, "weight"), {n_embd, n_vocab}, TENSOR_NOT_REQUIRED); |
32 | | |
33 | | // if output is NULL, init from the input tok embed |
34 | 0 | if (output == NULL) { |
35 | 0 | output = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, TENSOR_DUPLICATED); |
36 | 0 | } |
37 | |
|
38 | 0 | for (int i = 0; i < n_layer; ++i) { |
39 | 0 | auto & layer = layers[i]; |
40 | |
|
41 | 0 | layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0); |
42 | 0 | layer.attn_norm_b = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "bias", i), {n_embd}, 0); |
43 | |
|
44 | 0 | layer.wqkv = create_tensor(tn(LLM_TENSOR_ATTN_QKV, "weight", i), {n_embd, n_embd + 2*n_embd_gqa}, 0); |
45 | 0 | layer.wqkv_b = create_tensor(tn(LLM_TENSOR_ATTN_QKV, "bias", i), {n_embd + 2*n_embd_gqa}, 0); |
46 | |
|
47 | 0 | layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd, n_embd}, 0); |
48 | 0 | layer.wo_b = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "bias", i), {n_embd}, 0); |
49 | |
|
50 | 0 | layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0); |
51 | 0 | layer.ffn_norm_b = create_tensor(tn(LLM_TENSOR_FFN_NORM, "bias", i), {n_embd}, 0); |
52 | |
|
53 | 0 | layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {n_ff, n_embd}, 0); |
54 | 0 | layer.ffn_down_b = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "bias", i), {n_embd}, 0); |
55 | |
|
56 | 0 | layer.ffn_up = create_tensor(tn(LLM_TENSOR_FFN_UP, "weight", i), {n_embd, n_ff}, 0); |
57 | 0 | layer.ffn_up_b = create_tensor(tn(LLM_TENSOR_FFN_UP, "bias", i), {n_ff}, 0); |
58 | 0 | } |
59 | 0 | } |
60 | | |
61 | 0 | std::unique_ptr<llm_graph_context> llama_model_bloom::build_arch_graph(const llm_graph_params & params) const { |
62 | 0 | return std::make_unique<graph>(*this, params); |
63 | 0 | } |
64 | | |
65 | 0 | llama_model_bloom::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) { |
66 | 0 | const int64_t n_embd_head = hparams.n_embd_head_v(); |
67 | |
|
68 | 0 | GGML_ASSERT(n_embd_head == hparams.n_embd_head_k()); |
69 | |
|
70 | 0 | ggml_tensor * cur; |
71 | 0 | ggml_tensor * inpL; |
72 | |
|
73 | 0 | inpL = build_inp_embd(model.tok_embd); |
74 | |
|
75 | 0 | auto * inp_attn = build_attn_inp_kv(); |
76 | |
|
77 | 0 | inpL = build_norm(inpL, |
78 | 0 | model.tok_norm, |
79 | 0 | model.tok_norm_b, |
80 | 0 | LLM_NORM, 0); |
81 | 0 | cb(inpL, "inp_norm", 0); |
82 | |
|
83 | 0 | ggml_tensor * inp_out_ids = build_inp_out_ids(); |
84 | |
|
85 | 0 | for (int il = 0; il < n_layer; ++il) { |
86 | 0 | cur = build_norm(inpL, |
87 | 0 | model.layers[il].attn_norm, |
88 | 0 | model.layers[il].attn_norm_b, |
89 | 0 | LLM_NORM, il); |
90 | 0 | cb(cur, "attn_norm", il); |
91 | | |
92 | | // self-attention |
93 | 0 | { |
94 | 0 | auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur, |
95 | 0 | n_embd_head, n_head, n_head_kv, il); |
96 | |
|
97 | 0 | cur = build_attn(inp_attn, |
98 | 0 | model.layers[il].wo, model.layers[il].wo_b, model.layers[il].wo_s, |
99 | 0 | Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f/sqrtf(float(n_embd_head)), il); |
100 | 0 | } |
101 | |
|
102 | 0 | if (il == n_layer - 1 && inp_out_ids) { |
103 | 0 | cur = ggml_get_rows(ctx0, cur, inp_out_ids); |
104 | 0 | inpL = ggml_get_rows(ctx0, inpL, inp_out_ids); |
105 | 0 | } |
106 | | |
107 | | // Add the input |
108 | 0 | ggml_tensor * ffn_inp = ggml_add(ctx0, cur, inpL); |
109 | 0 | cb(ffn_inp, "ffn_inp", il); |
110 | | |
111 | | // FF |
112 | 0 | { |
113 | 0 | cur = build_norm(ffn_inp, |
114 | 0 | model.layers[il].ffn_norm, |
115 | 0 | model.layers[il].ffn_norm_b, |
116 | 0 | LLM_NORM, il); |
117 | 0 | cb(cur, "ffn_norm", il); |
118 | |
|
119 | 0 | cur = build_ffn(cur, |
120 | 0 | model.layers[il].ffn_up, model.layers[il].ffn_up_b, NULL, |
121 | 0 | NULL, NULL, NULL, |
122 | 0 | model.layers[il].ffn_down, model.layers[il].ffn_down_b, NULL, |
123 | 0 | NULL, |
124 | 0 | LLM_FFN_GELU, LLM_FFN_SEQ, il); |
125 | 0 | cb(cur, "ffn_out", il); |
126 | 0 | } |
127 | |
|
128 | 0 | cur = ggml_add(ctx0, cur, ffn_inp); |
129 | |
|
130 | 0 | cur = build_cvec(cur, il); |
131 | 0 | cb(cur, "l_out", il); |
132 | | |
133 | | // input for next layer |
134 | 0 | inpL = cur; |
135 | 0 | } |
136 | |
|
137 | 0 | cur = build_norm(inpL, |
138 | 0 | model.output_norm, |
139 | 0 | model.output_norm_b, |
140 | 0 | LLM_NORM, -1); |
141 | |
|
142 | 0 | cb(cur, "result_norm", -1); |
143 | 0 | res->t_embd = cur; |
144 | |
|
145 | 0 | cur = build_lora_mm(model.output, cur, model.output_s); |
146 | |
|
147 | 0 | cb(cur, "result_output", -1); |
148 | 0 | res->t_logits = cur; |
149 | |
|
150 | 0 | ggml_build_forward_expand(gf, cur); |
151 | 0 | } |