Coverage Report

Created: 2026-03-21 06:50

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/llama.cpp/src/models/bailingmoe2.cpp
Line
Count
Source
1
#include "models.h"
2
3
llm_build_bailingmoe2::llm_build_bailingmoe2(const llama_model & model, const llm_graph_params & params) :
4
0
    llm_graph_context(params) {
5
0
    const int64_t n_embd_head = hparams.n_embd_head_v();
6
0
    const int64_t n_embd_gqa  = hparams.n_embd_v_gqa();
7
8
0
    GGML_ASSERT(n_embd_head == hparams.n_embd_head_k());
9
10
0
    ggml_tensor * cur;
11
0
    ggml_tensor * inpL;
12
13
0
    inpL = build_inp_embd(model.tok_embd);
14
15
    // inp_pos - contains the positions
16
0
    ggml_tensor * inp_pos = build_inp_pos();
17
18
0
    auto * inp_attn = build_attn_inp_kv();
19
20
0
    ggml_tensor * inp_out_ids = build_inp_out_ids();
21
22
0
    const int n_transformer_layers = n_layer - hparams.nextn_predict_layers;
23
0
    for (int il = 0; il < n_transformer_layers; ++il) {
24
0
        ggml_tensor * inpSA = inpL;
25
26
        // norm
27
0
        cur = build_norm(inpL, model.layers[il].attn_norm, NULL, LLM_NORM_RMS, il);
28
0
        cb(cur, "attn_norm", il);
29
30
        // self_attention
31
0
        {
32
0
            cur = build_lora_mm(model.layers[il].wqkv, cur);
33
0
            cb(cur, "wqkv", il);
34
35
0
            ggml_tensor * Qcur = ggml_view_3d(ctx0, cur, n_embd_head, n_head, n_tokens, n_embd_head * sizeof(float),
36
0
                                              cur->nb[1], 0 * sizeof(float) * (n_embd));
37
0
            ggml_tensor * Kcur = ggml_view_3d(ctx0, cur, n_embd_head, n_head_kv, n_tokens, n_embd_head * sizeof(float),
38
0
                                              cur->nb[1], 1 * sizeof(float) * (n_embd));
39
0
            ggml_tensor * Vcur = ggml_view_3d(ctx0, cur, n_embd_head, n_head_kv, n_tokens, n_embd_head * sizeof(float),
40
0
                                              cur->nb[1], 1 * sizeof(float) * (n_embd + n_embd_gqa));
41
42
0
            Qcur = build_norm(Qcur, model.layers[il].attn_q_norm, NULL, LLM_NORM_RMS, il);
43
0
            cb(Qcur, "Qcur_normed", il);
44
45
0
            Qcur = ggml_rope_ext(ctx0, Qcur, inp_pos, nullptr, n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
46
0
                                 ext_factor, attn_factor, beta_fast, beta_slow);
47
48
0
            Kcur = build_norm(Kcur, model.layers[il].attn_k_norm, NULL, LLM_NORM_RMS, il);
49
0
            cb(Kcur, "Kcur_normed", il);
50
51
0
            Kcur = ggml_rope_ext(ctx0, Kcur, inp_pos, nullptr, n_rot, rope_type, n_ctx_orig, freq_base, freq_scale,
52
0
                                 ext_factor, attn_factor, beta_fast, beta_slow);
53
54
0
            cb(Qcur, "Qcur", il);
55
0
            cb(Kcur, "Kcur", il);
56
0
            cb(Vcur, "Vcur", il);
57
58
0
            cur = build_attn(inp_attn,
59
0
                    model.layers[il].wo, model.layers[il].bo,
60
0
                    Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, 1.0f / sqrtf(float(n_embd_head)), il);
61
0
        }
62
63
0
        if (il == n_transformer_layers - 1 && inp_out_ids) {
64
0
            cur   = ggml_get_rows(ctx0, cur, inp_out_ids);
65
0
            inpSA = ggml_get_rows(ctx0, inpSA, inp_out_ids);
66
0
        }
67
68
0
        ggml_tensor * sa_out = ggml_add(ctx0, cur, inpSA);
69
0
        cb(sa_out, "sa_out", il);
70
71
        // MoE branch
72
0
        cur = build_norm(sa_out, model.layers[il].ffn_norm, NULL, LLM_NORM_RMS, il);
73
0
        cb(cur, "ffn_norm", il);
74
75
0
        if (static_cast<uint32_t>(il) < hparams.n_layer_dense_lead) {
76
0
            cur = build_ffn(cur,
77
0
                    model.layers[il].ffn_up, NULL, NULL,
78
0
                    model.layers[il].ffn_gate, NULL, NULL,
79
0
                    model.layers[il].ffn_down, NULL, NULL,
80
0
                    NULL, LLM_FFN_SILU, LLM_FFN_PAR, il);
81
0
            cb(cur, "ffn_out", il);
82
0
        } else {
83
0
            ggml_tensor * moe_out = build_moe_ffn(cur,
84
0
                model.layers[il].ffn_gate_inp,
85
0
                model.layers[il].ffn_up_exps,
86
0
                model.layers[il].ffn_gate_exps,
87
0
                model.layers[il].ffn_down_exps,
88
0
                model.layers[il].ffn_exp_probs_b,
89
0
                n_expert, n_expert_used,
90
0
                LLM_FFN_SILU, hparams.expert_weights_norm,
91
0
                hparams.expert_weights_scale,
92
0
                (llama_expert_gating_func_type) hparams.expert_gating_func,
93
0
                il);
94
0
            cb(moe_out, "ffn_moe_out", il);
95
96
0
            {
97
0
                ggml_tensor * ffn_shexp =
98
0
                    build_ffn(cur,
99
0
                        model.layers[il].ffn_up_shexp, NULL, NULL,
100
0
                        model.layers[il].ffn_gate_shexp, NULL, NULL,
101
0
                        model.layers[il].ffn_down_shexp, NULL, NULL,
102
0
                        NULL, LLM_FFN_SILU, LLM_FFN_PAR, il);
103
0
                cb(ffn_shexp, "ffn_shexp", il);
104
105
0
                cur = ggml_add(ctx0, moe_out, ffn_shexp);
106
0
                cb(cur, "ffn_out", il);
107
0
            }
108
0
        }
109
110
0
        cur = ggml_add(ctx0, cur, sa_out);
111
112
0
        cur = build_cvec(cur, il);
113
0
        cb(cur, "l_out", il);
114
115
        // input for next layer
116
0
        inpL = cur;
117
0
    }
118
119
0
    cur = inpL;
120
121
0
    cur = build_norm(cur, model.output_norm, NULL, LLM_NORM_RMS, -1);
122
123
0
    cb(cur, "result_norm", -1);
124
0
    res->t_embd = cur;
125
126
    // lm_head
127
0
    cur = build_lora_mm(model.output, cur);
128
129
0
    cb(cur, "result_output", -1);
130
0
    res->t_logits = cur;
131
132
0
    ggml_build_forward_expand(gf, cur);
133
0
}