Coverage Report

Created: 2026-06-13 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/llama.cpp/src/models/qwen.cpp
Line
Count
Source
1
#include "models.h"
2
3
0
void llama_model_qwen::load_arch_hparams(llama_model_loader & ml) {
4
0
    ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);
5
6
0
    switch (hparams.n_layer()) {
7
0
        case 32: type = LLM_TYPE_7B; break;
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_qwen::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
18
    // output
19
0
    output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0);
20
0
    output      = create_tensor(tn(LLM_TENSOR_OUTPUT,      "weight"), {n_embd, n_vocab}, 0);
21
22
0
    for (int i = 0; i < n_layer; ++i) {
23
0
        auto & layer = layers[i];
24
25
0
        layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0);
26
27
0
        layer.wqkv = create_tensor(tn(LLM_TENSOR_ATTN_QKV, "weight", i), {n_embd, n_embd*3}, 0);
28
0
        layer.wqkv_b = create_tensor(tn(LLM_TENSOR_ATTN_QKV, "bias", i), {n_embd*3}, 0);
29
0
        layer.wo   = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd, n_embd}, 0);
30
31
0
        layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0);
32
33
0
        layer.ffn_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd, n_ff/2}, 0);
34
0
        layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {n_ff/2, n_embd}, 0);
35
0
        layer.ffn_up   = create_tensor(tn(LLM_TENSOR_FFN_UP,   "weight", i), {n_embd, n_ff/2}, 0);
36
0
    }
37
0
}
38
39
0
std::unique_ptr<llm_graph_context> llama_model_qwen::build_arch_graph(const llm_graph_params & params) const {
40
0
    return std::make_unique<graph>(*this, params);
41
0
}
42
43
0
llama_model_qwen::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) {
44
0
    const int64_t n_embd_head = hparams.n_embd_head_v();
45
46
0
    GGML_ASSERT(n_embd_head == hparams.n_embd_head_k());
47
48
0
    ggml_tensor * cur;
49
0
    ggml_tensor * inpL;
50
51
0
    inpL = build_inp_embd(model.tok_embd);
52
53
    // inp_pos - contains the positions
54
0
    ggml_tensor * inp_pos = build_inp_pos();
55
56
0
    auto * inp_attn = build_attn_inp_kv();
57
58
0
    ggml_tensor * inp_out_ids = build_inp_out_ids();
59
60
0
    for (int il = 0; il < n_layer; ++il) {
61
0
        ggml_tensor * inpSA = inpL;
62
63
0
        cur = build_norm(inpL,
64
0
                model.layers[il].attn_norm, NULL,
65
0
                LLM_NORM_RMS, il);
66
0
        cb(cur, "attn_norm", il);
67
68
        // self-attention
69
0
        {
70
0
            auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur,
71
0
                    n_embd_head, n_head, n_head_kv, il);
72
73
            // using mode = 2 for neox mode
74
0
            Qcur = ggml_rope_ext(
75
0
                    ctx0, Qcur, inp_pos, nullptr,
76
0
                    n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
77
0
                    ext_factor, attn_factor, beta_fast, beta_slow
78
0
                    );
79
80
0
            Kcur = ggml_rope_ext(
81
0
                    ctx0, Kcur, inp_pos, nullptr,
82
0
                    n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
83
0
                    ext_factor, attn_factor, beta_fast, beta_slow
84
0
                    );
85
86
0
            cb(Qcur, "Qcur", il);
87
0
            cb(Kcur, "Kcur", il);
88
0
            cb(Vcur, "Vcur", il);
89
90
0
            cur = build_attn(inp_attn,
91
0
                    model.layers[il].wo, NULL, model.layers[il].wo_s,
92
0
                    Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f/sqrtf(float(n_embd_head)), il);
93
0
        }
94
0
        if (il == n_layer - 1 && inp_out_ids) {
95
0
            cur   = ggml_get_rows(ctx0,   cur, inp_out_ids);
96
0
            inpSA = ggml_get_rows(ctx0, inpSA, inp_out_ids);
97
0
        }
98
0
        ggml_tensor * ffn_inp = ggml_add(ctx0, cur, inpSA);
99
0
        cb(ffn_inp, "ffn_inp", il);
100
101
        // feed-forward forward
102
0
        {
103
0
            cur = build_norm(ffn_inp,
104
0
                    model.layers[il].ffn_norm, NULL,
105
0
                    LLM_NORM_RMS, il);
106
0
            cb(cur, "ffn_norm", il);
107
108
0
            cur = build_ffn(cur,
109
0
                    model.layers[il].ffn_up,   NULL, NULL,
110
0
                    model.layers[il].ffn_gate, NULL, NULL,
111
0
                    model.layers[il].ffn_down, NULL, NULL,
112
0
                    NULL,
113
0
                    LLM_FFN_SILU, LLM_FFN_PAR, il);
114
0
            cb(cur, "ffn_out", il);
115
0
        }
116
0
        cur = ggml_add(ctx0, cur, ffn_inp);
117
118
0
        cur = build_cvec(cur, il);
119
0
        cb(cur, "l_out", il);
120
121
        // input for next layer
122
0
        inpL = cur;
123
0
    }
124
0
    cur = inpL;
125
126
0
    cur = build_norm(cur,
127
0
            model.output_norm, NULL,
128
0
            LLM_NORM_RMS, -1);
129
130
0
    cb(cur, "result_norm", -1);
131
0
    res->t_embd = cur;
132
133
    // lm_head
134
0
    cur = build_lora_mm(model.output, cur, model.output_s);
135
136
0
    cb(cur, "result_output", -1);
137
0
    res->t_logits = cur;
138
139
0
    ggml_build_forward_expand(gf, cur);
140
0
}