Coverage Report

Created: 2026-06-22 06:47

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/llama.cpp/src/models/gemma2.cpp
Line
Count
Source
1
#include "models.h"
2
3
0
void llama_model_gemma2::load_arch_hparams(llama_model_loader & ml) {
4
0
    hparams.swa_type = LLAMA_SWA_TYPE_STANDARD;
5
0
    hparams.n_swa = 4096; // default value of gemma 2
6
0
    uint32_t swa_period = 2;
7
0
    ml.get_key_or_arr(LLM_KV_ATTENTION_SLIDING_WINDOW_PATTERN, swa_period, false);
8
0
    hparams.set_swa_pattern(swa_period);
9
0
    hparams.attn_soft_cap = true;
10
0
    hparams.rope_freq_base_train_swa  = hparams.rope_freq_base_train;
11
0
    hparams.rope_freq_scale_train_swa = hparams.rope_freq_scale_train;
12
13
0
    ml.get_key(LLM_KV_ROPE_FREQ_BASE_SWA,          hparams.rope_freq_base_train_swa, false);
14
0
    ml.get_key(LLM_KV_ATTENTION_SLIDING_WINDOW,    hparams.n_swa, false);
15
0
    ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);
16
0
    ml.get_key(LLM_KV_ATTN_LOGIT_SOFTCAPPING,      hparams.f_attn_logit_softcapping, false);
17
0
    ml.get_key(LLM_KV_FINAL_LOGIT_SOFTCAPPING,     hparams.f_final_logit_softcapping, false);
18
19
0
    switch (hparams.n_layer()) {
20
0
        case 26: type = LLM_TYPE_2B; break;
21
0
        case 42: type = LLM_TYPE_9B; break;
22
0
        case 46: type = LLM_TYPE_27B; break;
23
0
        default: type = LLM_TYPE_UNKNOWN;
24
0
   }
25
26
    // ref: https://github.com/google/gemma_pytorch/blob/014acb7ac4563a5f77c76d7ff98f31b568c16508/gemma/config.py#L173
27
0
    hparams.f_attention_scale = type == LLM_TYPE_27B
28
0
        ? 1.0f / std::sqrt(float(hparams.n_embd / hparams.n_head(0)))
29
0
        : 1.0f / std::sqrt(float(hparams.n_embd_head_k()));
30
0
}
31
32
0
void llama_model_gemma2::load_arch_tensors(llama_model_loader &) {
33
0
    LLAMA_LOAD_LOCALS;
34
35
0
    tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0);
36
37
    // output
38
0
    output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0);
39
0
    output      = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD,  "weight"), {n_embd, n_vocab}, TENSOR_DUPLICATED); // same as tok_embd, duplicated to allow offloading
40
41
0
    for (int i = 0; i < n_layer; ++i) {
42
0
        auto & layer = layers[i];
43
44
0
        layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0);
45
46
0
        create_tensor_qkv(layer, i, n_embd, n_embd_head_k * n_head, n_embd_k_gqa, n_embd_v_gqa, 0);
47
0
        layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd_head_k * n_head, n_embd}, 0);
48
0
        layer.attn_post_norm = create_tensor(tn(LLM_TENSOR_ATTN_POST_NORM, "weight", 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_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd,   n_ff}, 0);
52
0
        layer.ffn_up   = create_tensor(tn(LLM_TENSOR_FFN_UP,   "weight", i), {n_embd,   n_ff}, 0);
53
0
        layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {  n_ff, n_embd}, 0);
54
0
        layer.ffn_post_norm = create_tensor(tn(LLM_TENSOR_FFN_POST_NORM, "weight", i), {n_embd}, 0);
55
0
    }
56
0
}
57
58
0
std::unique_ptr<llm_graph_context> llama_model_gemma2::build_arch_graph(const llm_graph_params & params) const {
59
0
    return std::make_unique<graph>(*this, params);
60
0
}
61
62
0
llama_model_gemma2::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) {
63
0
    const int64_t n_embd_head = hparams.n_embd_head_k();
64
65
0
    ggml_tensor * cur;
66
0
    ggml_tensor * inpL;
67
68
0
    inpL = build_inp_embd(model.tok_embd);
69
70
0
    inpL = ggml_scale(ctx0, inpL, sqrtf(n_embd));
71
0
    cb(inpL, "inp_scaled", -1);
72
73
    // inp_pos - contains the positions
74
0
    ggml_tensor * inp_pos = build_inp_pos();
75
76
0
    auto * inp_attn = build_attn_inp_kv_iswa();
77
78
0
    ggml_tensor * inp_out_ids = build_inp_out_ids();
79
80
0
    for (int il = 0; il < n_layer; ++il) {
81
0
        const float freq_base_l  = model.get_rope_freq_base (cparams, il);
82
0
        const float freq_scale_l = model.get_rope_freq_scale(cparams, il);
83
84
        // norm
85
0
        cur = build_norm(inpL,
86
0
                model.layers[il].attn_norm, NULL,
87
0
                LLM_NORM_RMS, il);
88
0
        cb(cur, "attn_norm", il);
89
90
        // self-attention
91
0
        {
92
            // compute Q and K and RoPE them
93
0
            auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur,
94
0
                    n_embd_head, n_head, n_head_kv, il);
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_l, freq_scale_l,
99
0
                    ext_factor, attn_factor, beta_fast, beta_slow);
100
101
0
            Kcur = ggml_rope_ext(
102
0
                    ctx0, Kcur, inp_pos, nullptr,
103
0
                    n_rot, rope_type, n_ctx_orig, freq_base_l, freq_scale_l,
104
0
                    ext_factor, attn_factor, beta_fast, beta_slow);
105
106
0
            cb(Qcur, "Qcur", il);
107
0
            cb(Kcur, "Kcur", il);
108
0
            cb(Vcur, "Vcur", il);
109
110
0
            Qcur = ggml_scale(ctx0, Qcur, hparams.f_attention_scale);
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, il);
115
0
        }
116
0
        if (il == n_layer - 1 && inp_out_ids) {
117
0
            cur  = ggml_get_rows(ctx0,  cur, inp_out_ids);
118
0
            inpL = ggml_get_rows(ctx0, inpL, inp_out_ids);
119
0
        }
120
0
        cur = build_norm(cur,
121
0
                model.layers[il].attn_post_norm, NULL,
122
0
                LLM_NORM_RMS, il);
123
0
        cb(cur, "attn_post_norm", il);
124
125
0
        ggml_tensor * sa_out = ggml_add(ctx0, cur, inpL);
126
0
        cb(sa_out, "sa_out", il);
127
128
0
        cur = build_norm(sa_out,
129
0
                model.layers[il].ffn_norm, NULL,
130
0
                LLM_NORM_RMS, il);
131
0
        cb(cur, "ffn_norm", il);
132
133
        // feed-forward network
134
0
        {
135
0
            cur = build_ffn(cur,
136
0
                    model.layers[il].ffn_up,   NULL, NULL,
137
0
                    model.layers[il].ffn_gate, NULL, NULL,
138
0
                    model.layers[il].ffn_down, NULL, NULL,
139
0
                    NULL,
140
0
                    LLM_FFN_GELU, LLM_FFN_PAR, il);
141
0
            cb(cur, "ffn_out", il);
142
0
        }
143
0
        cur = build_norm(cur,
144
0
                model.layers[il].ffn_post_norm, NULL,
145
0
                LLM_NORM_RMS, -1);
146
0
        cb(cur, "ffn_post_norm", -1);
147
148
0
        cur = ggml_add(ctx0, cur, sa_out);
149
150
0
        cur = build_cvec(cur, il);
151
0
        cb(cur, "l_out", il);
152
153
        // input for next layer
154
0
        inpL = cur;
155
0
    }
156
0
    cur = inpL;
157
158
0
    cur = build_norm(cur,
159
0
            model.output_norm, NULL,
160
0
            LLM_NORM_RMS, -1);
161
162
0
    cb(cur, "result_norm", -1);
163
0
    res->t_embd = cur;
164
165
    // lm_head
166
0
    cur = build_lora_mm(model.output, cur, model.output_s);
167
168
    // final logit soft-capping
169
0
    cur = ggml_scale(ctx0, cur, 1.0f / hparams.f_final_logit_softcapping);
170
0
    cur = ggml_tanh(ctx0, cur);
171
0
    cur = ggml_scale(ctx0, cur, hparams.f_final_logit_softcapping);
172
173
0
    cb(cur, "result_output", -1);
174
0
    res->t_logits = cur;
175
176
0
    ggml_build_forward_expand(gf, cur);
177
0
}