CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 2d agoView on Hugging Face
0likes1.1kdownloads
laguna.cpp332 linesDownload Raw Back to models
1// Laguna (poolside): sigmoid-routed MoE with a score-correction bias, one shared2// expert, a softplus attention output gate, QK-norm, and per-layer-type RoPE3// (YaRN on full-attention layers, plain RoPE on sliding-window layers). XS.2 is4// hybrid full/SWA with a per-head gate; M.1 is full-attention with a per-element5// gate. Shares the MoE/gate structure with afmoe.6 7#include "models.h"8 9void llama_model_laguna::load_arch_hparams(llama_model_loader & ml) {10    ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);11    ml.get_key(LLM_KV_LEADING_DENSE_BLOCK_COUNT,   hparams.n_layer_dense_lead);12    ml.get_key_or_arr(LLM_KV_EXPERT_FEED_FORWARD_LENGTH, hparams.n_ff_exp_arr, hparams.n_layer_all);13    ml.get_key(LLM_KV_EXPERT_GATING_FUNC,          hparams.expert_gating_func, false);14    ml.get_key(LLM_KV_EXPERT_WEIGHTS_SCALE,        hparams.expert_weights_scale, false);15    ml.get_key(LLM_KV_EXPERT_WEIGHTS_NORM,         hparams.expert_weights_norm, false);16 17    // Laguna ships one shared expert and stores its size directly (routed and18    // shared experts may differ), so read the size from expert_shared_feed_forward_length.19    // The count is not in the config; default to 1 but read the key if present.20    hparams.n_expert_shared = 1;21    ml.get_key(LLM_KV_EXPERT_SHARED_COUNT,               hparams.n_expert_shared, false);22    ml.get_key(LLM_KV_EXPERT_SHARED_FEED_FORWARD_LENGTH, hparams.n_ff_shexp, false);23    if (hparams.n_ff_shexp == 0) {24        // Weightless fixtures (test-llama-archs) omit this key; derive a nonzero25        // size so the shared expert is still built. Real GGUFs always carry the26        // exact value (routed and shared FF lengths may differ).27        hparams.n_ff_shexp = hparams.n_ff_exp() * hparams.n_expert_shared;28    }29 30    // Sliding-window attention is OPTIONAL. XS.2 is hybrid (full / SWA / SWA /31    // SWA repeating, period 4 starting with full); M.1 has no sliding window32    // (all layers full attention). When sliding_window is absent or zero we33    // leave swa_type = NONE and skip the SWA-specific per-layer-type RoPE.34    hparams.n_swa = 0;35    ml.get_key(LLM_KV_ATTENTION_SLIDING_WINDOW, hparams.n_swa, false);36    if (hparams.n_swa > 0) {37        hparams.swa_type = LLAMA_SWA_TYPE_STANDARD;38 39        load_swa_pattern(ml, 4, /*dense_first=*/true);  // XS.2: FULL at il%4==040 41        // Per-layer-type RoPE: full layers use YaRN θ=500000 over 64 dims;42        // SWA layers use default RoPE θ=10000 over 128 dims. Base load_hparams43        // already reads ROPE_FREQ_BASE and ROPE_DIMENSION_COUNT into the44        // non-SWA fields; we explicitly pull the SWA mirrors here.45        hparams.rope_freq_base_train_swa  = hparams.rope_freq_base_train;46        hparams.rope_freq_scale_train_swa = 1.0f;  // SWA uses plain RoPE (no YaRN scaling); do NOT inherit full layers 1/factor47        ml.get_key(LLM_KV_ROPE_FREQ_BASE_SWA, hparams.rope_freq_base_train_swa, false);48        ml.get_key(LLM_KV_ROPE_DIMENSION_COUNT_SWA, hparams.n_rot_swa, false);49    }50 51    // Default the expert gating function to SIGMOID when the key is absent52    // (matches the HF reference).53    if (hparams.expert_gating_func == LLAMA_EXPERT_GATING_FUNC_TYPE_NONE) {54        hparams.expert_gating_func = LLAMA_EXPERT_GATING_FUNC_TYPE_SIGMOID;55    }56 57    switch (hparams.n_layer()) {58        case 40: type = LLM_TYPE_30B_A3B;   break;  // Laguna-XS.259        case 48: type = LLM_TYPE_118B_A8B;  break;  // Laguna-S.260        case 70: type = LLM_TYPE_230B_A10B; break;  // Laguna-M.161        default: type = LLM_TYPE_UNKNOWN;62    }63}64 65void llama_model_laguna::load_arch_tensors(llama_model_loader & ml) {66    LLAMA_LOAD_LOCALS;67 68    tok_embd = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, 0);69 70    output_norm = create_tensor(tn(LLM_TENSOR_OUTPUT_NORM, "weight"), {n_embd}, 0);71    output      = create_tensor(tn(LLM_TENSOR_OUTPUT,      "weight"), {n_embd, n_vocab}, TENSOR_NOT_REQUIRED);72    if (output == NULL) {73        // tied embeddings fallback74        output = create_tensor(tn(LLM_TENSOR_TOKEN_EMBD, "weight"), {n_embd, n_vocab}, TENSOR_DUPLICATED);75    }76 77    const int64_t n_ff_exp   = hparams.n_ff_exp();78    const int64_t n_ff_shexp = hparams.n_ff_shexp;79 80    for (int i = 0; i < n_layer; ++i) {81        auto & layer = layers[i];82 83        // Per-layer head count — Laguna varies n_head between full and SWA84        // layers (48 vs 64 in XS.2). KV head count is uniform.85        const int64_t n_head_il    = hparams.n_head(i);86        const int64_t n_head_kv_il = hparams.n_head_kv(i);87        const int64_t n_embd_q_il  = n_embd_head_k * n_head_il;88        const int64_t n_embd_k_il  = n_embd_head_k * n_head_kv_il;89        const int64_t n_embd_v_il  = n_embd_head_v * n_head_kv_il;90 91        layer.attn_norm = create_tensor(tn(LLM_TENSOR_ATTN_NORM, "weight", i), {n_embd}, 0);92 93        create_tensor_qkv(layer, i, n_embd, n_embd_q_il, n_embd_k_il, n_embd_v_il, 0);94        layer.wo = create_tensor(tn(LLM_TENSOR_ATTN_OUT, "weight", i), {n_embd_q_il, n_embd}, 0);95 96        layer.attn_q_norm = create_tensor(tn(LLM_TENSOR_ATTN_Q_NORM, "weight", i), {n_embd_head_k}, 0);97        layer.attn_k_norm = create_tensor(tn(LLM_TENSOR_ATTN_K_NORM, "weight", i), {n_embd_head_k}, 0);98 99        // Attention output gate. XS.2 is per-head (g_proj -> n_head, one scalar100        // per head broadcast over head_dim at multiply time); M.1 is per-element101        // (g_proj -> n_head*head_dim, like afmoe). Detect from the stored tensor102        // shape so a single arch handles both; the graph mirrors this check.103        // Gate width selects per-head vs per-element. Real GGUFs always carry the104        // gate tensor, so read the width from it and require EXACTLY one of the two105        // valid widths -- never guess between them. Weightless fixtures106        // (test-llama-archs) have no gate tensor; fall back to the per-head layout so107        // the per-head reshape path is still exercised.108        const int64_t n_gate_per_head = n_head_il;109        const int64_t n_gate_per_elem = n_embd_head_k * n_head_il;110        const ggml_tensor * gate_meta = ml.get_tensor_meta(tn(LLM_TENSOR_ATTN_GATE, "weight", i).str().c_str());111        int64_t n_gate_out;112        if (gate_meta != nullptr) {113            n_gate_out = gate_meta->ne[1];114            if (n_gate_out != n_gate_per_head && n_gate_out != n_gate_per_elem) {115                GGML_ABORT("Laguna: unexpected attention gate width %lld at layer %d "116                           "(expected %lld per-head or %lld per-element)",117                           (long long) n_gate_out, i, (long long) n_gate_per_head, (long long) n_gate_per_elem);118            }119        } else {120            n_gate_out = n_gate_per_head;121        }122        layer.wqkv_gate = create_tensor(tn(LLM_TENSOR_ATTN_GATE, "weight", i), {n_embd, n_gate_out}, 0);123 124        layer.ffn_norm = create_tensor(tn(LLM_TENSOR_FFN_NORM, "weight", i), {n_embd}, 0);125 126        if ((uint32_t)i >= hparams.n_layer_dense_lead) {127            // MoE layer128            layer.ffn_gate_inp    = create_tensor(tn(LLM_TENSOR_FFN_GATE_INP,    "weight", i), {n_embd, n_expert}, 0);129            layer.ffn_exp_probs_b = create_tensor(tn(LLM_TENSOR_FFN_EXP_PROBS_B, "bias",   i), {n_expert}, 0);130 131            layer.ffn_gate_exps = create_tensor(tn(LLM_TENSOR_FFN_GATE_EXPS, "weight", i), {n_embd,   n_ff_exp, n_expert}, 0);132            layer.ffn_up_exps   = create_tensor(tn(LLM_TENSOR_FFN_UP_EXPS,   "weight", i), {n_embd,   n_ff_exp, n_expert}, 0);133            layer.ffn_down_exps = create_tensor(tn(LLM_TENSOR_FFN_DOWN_EXPS, "weight", i), {n_ff_exp, n_embd,   n_expert}, 0);134 135            // Always-on shared expert.136            layer.ffn_gate_shexp = create_tensor(tn(LLM_TENSOR_FFN_GATE_SHEXP, "weight", i), {n_embd,    n_ff_shexp}, 0);137            layer.ffn_up_shexp   = create_tensor(tn(LLM_TENSOR_FFN_UP_SHEXP,   "weight", i), {n_embd,    n_ff_shexp}, 0);138            layer.ffn_down_shexp = create_tensor(tn(LLM_TENSOR_FFN_DOWN_SHEXP, "weight", i), {n_ff_shexp, n_embd},    0);139        } else {140            // Dense layer (the leading n_layer_dense_lead layers)141            layer.ffn_gate = create_tensor(tn(LLM_TENSOR_FFN_GATE, "weight", i), {n_embd, n_ff}, 0);142            layer.ffn_up   = create_tensor(tn(LLM_TENSOR_FFN_UP,   "weight", i), {n_embd, n_ff}, 0);143            layer.ffn_down = create_tensor(tn(LLM_TENSOR_FFN_DOWN, "weight", i), {n_ff,   n_embd}, 0);144        }145    }146}147 148std::unique_ptr<llm_graph_context> llama_model_laguna::build_arch_graph(const llm_graph_params & params) const {149    return std::make_unique<graph>(*this, params);150}151 152llama_model_laguna::graph::graph(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) {153    const int64_t n_embd_head = hparams.n_embd_head_v();154    GGML_ASSERT(n_embd_head == hparams.n_embd_head_k());155 156    ggml_tensor * cur;157    ggml_tensor * inpL;158 159    inpL = build_inp_embd(model.tok_embd);160    // No MuP embedding scale (laguna omits this; afmoe scales by sqrt(hidden)).161 162    ggml_tensor * inp_pos = build_inp_pos();163    // XS.2 is hybrid SWA -> interleaved-SWA KV input; M.1 is all-full -> plain164    // KV input. Pick the matching input (and build_attn overload) per swa_type.165    const bool has_swa = hparams.swa_type != LLAMA_SWA_TYPE_NONE;166    llm_graph_input_attn_kv      * inp_attn_kv   = has_swa ? nullptr : build_attn_inp_kv();167    llm_graph_input_attn_kv_iswa * inp_attn_iswa = has_swa ? build_attn_inp_kv_iswa() : nullptr;168    ggml_tensor * inp_out_ids = build_inp_out_ids();169 170    const float kq_scale = 1.0f / sqrtf(float(n_embd_head));171 172    for (int il = 0; il < n_layer; ++il) {173        const bool    is_swa_il   = hparams.is_swa(il);174        const int64_t n_head_il   = hparams.n_head(il);175        const int64_t n_head_kv_il = hparams.n_head_kv(il);176 177        // Per-layer-type RoPE config. SWA layers run plain rope (no YaRN),178        // achieved by zeroing the YaRN ext/beta params for those layers.179        const int   n_rot_l       = is_swa_il ? hparams.n_rot_swa : n_rot;180        const float freq_base_l   = is_swa_il ? hparams.rope_freq_base_train_swa : freq_base;181        const float freq_scale_l  = is_swa_il ? hparams.rope_freq_scale_train_swa : freq_scale;182        const float ext_factor_l  = is_swa_il ? 0.0f : ext_factor;183        // YaRN magnitude scaling (mscale) is already handled by the framework:184        // llama_context pre-divides cparams.yarn_attn_factor by (1 + 0.1*ln(factor))185        // to cancel ggml rope_yarn's internal mscale *= 1 + 0.1*ln(1/freq_scale).186        // Pass attn_factor straight through (like every other arch); SWA layers run187        // plain RoPE (ext_factor 0, no mscale) so force 1.0 there.188        const float attn_factor_l = is_swa_il ? 1.0f : attn_factor;189        const float beta_fast_l   = is_swa_il ? 0.0f : beta_fast;190        const float beta_slow_l   = is_swa_il ? 0.0f : beta_slow;191        const int   n_ctx_orig_l  = is_swa_il ? hparams.n_ctx_train : n_ctx_orig;192 193        ggml_tensor * inpSA = inpL;194 195        // Pre-norm196        cur = build_norm(inpL, model.layers[il].attn_norm, NULL, LLM_NORM_RMS, il);197        cb(cur, "attn_norm", il);198 199        // Self-attention200        {201            ggml_tensor * attn_inp = cur;  // saved for the gate projection202 203            auto [Qcur, Kcur, Vcur] = build_qkv(model.layers[il], cur,204                    n_embd_head, n_head_il, n_head_kv_il, il);205 206            // g_proj on the *pre-attention* hidden state (matches HF207            // reference: gate is computed from the same `hidden_states`208            // input as q/k/v, not from the attn output).209            ggml_tensor * gate = build_lora_mm(model.layers[il].wqkv_gate, attn_inp);210            cb(gate, "attn_gate_proj", il);211 212            // QK RMSNorm at head_dim level (Qwen3 style)213            Qcur = build_norm(Qcur, model.layers[il].attn_q_norm, NULL, LLM_NORM_RMS, il);214            Kcur = build_norm(Kcur, model.layers[il].attn_k_norm, NULL, LLM_NORM_RMS, il);215            cb(Qcur, "Qcur_normed", il);216            cb(Kcur, "Kcur_normed", il);217 218            Qcur = ggml_rope_ext(ctx0, Qcur, inp_pos, nullptr,219                    n_rot_l, rope_type, n_ctx_orig_l, freq_base_l, freq_scale_l,220                    ext_factor_l, attn_factor_l, beta_fast_l, beta_slow_l);221            Kcur = ggml_rope_ext(ctx0, Kcur, inp_pos, nullptr,222                    n_rot_l, rope_type, n_ctx_orig_l, freq_base_l, freq_scale_l,223                    ext_factor_l, attn_factor_l, beta_fast_l, beta_slow_l);224            cb(Qcur, "Qcur_rope", il);225            cb(Kcur, "Kcur_rope", il);226 227            cur = has_swa228                ? build_attn(inp_attn_iswa,229                        NULL, NULL, NULL,    // o_proj deferred until after gating230                        Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, kq_scale, il)231                : build_attn(inp_attn_kv,232                        NULL, NULL, NULL,233                        Qcur, Kcur, Vcur, nullptr, nullptr, nullptr, kq_scale, il);234            cb(cur, "attn_out", il);235 236            // Softplus output gate (the unary kernel computes softplus in fp32237            // and casts back). Two shapes, distinguished by the g_proj output238            // dim (matching the load-time detection):239            //   XS.2 per-head     : gate [n_head_il, n_tokens] -> reshape to240            //                       [1, n_head_il, n_tokens] and broadcast over241            //                       head_dim against cur [head_dim, n_head, T].242            //   M.1  per-element  : gate [n_head_il*head_dim, n_tokens] spans the243            //                       full attention output -> direct ggml_mul.244            gate = ggml_softplus(ctx0, gate);245            cb(gate, "attn_gate_softplus", il);246 247            const int64_t n_tokens = cur->ne[1];248            if (model.layers[il].wqkv_gate->ne[1] == n_head_il) {249                cur  = ggml_reshape_3d(ctx0, cur,  n_embd_head, n_head_il, n_tokens);250                gate = ggml_reshape_3d(ctx0, gate, 1,           n_head_il, n_tokens);251                cur  = ggml_mul(ctx0, cur, gate);252                cur  = ggml_reshape_2d(ctx0, cur, n_embd_head * n_head_il, n_tokens);253            } else {254                cur = ggml_mul(ctx0, cur, gate);255            }256            cb(cur, "attn_gated", il);257 258            cur = build_lora_mm(model.layers[il].wo, cur, model.layers[il].wo_s);259            cb(cur, "attn_o_proj", il);260        }261 262        if (il == n_layer - 1 && inp_out_ids) {263            cur   = ggml_get_rows(ctx0,   cur, inp_out_ids);264            inpSA = ggml_get_rows(ctx0, inpSA, inp_out_ids);265        }266 267        ggml_tensor * ffn_inp = ggml_add(ctx0, cur, inpSA);268        cb(ffn_inp, "ffn_inp", il);269 270        // Pre-norm only (no post-attn norm)271        cur = build_norm(ffn_inp, model.layers[il].ffn_norm, NULL, LLM_NORM_RMS, il);272        cb(cur, "ffn_norm", il);273 274        if ((uint32_t)il >= hparams.n_layer_dense_lead) {275            // MoE: sigmoid routing + score-correction bias + sum-norm +276            // routed_scaling_factor (all handled by build_moe_ffn).277            ggml_tensor * moe_out = build_moe_ffn(cur,278                    model.layers[il].ffn_gate_inp,279                    model.layers[il].ffn_up_exps,280                    model.layers[il].ffn_gate_exps,281                    model.layers[il].ffn_down_exps,282                    model.layers[il].ffn_exp_probs_b,283                    n_expert, n_expert_used,284                    LLM_FFN_SILU,285                    hparams.expert_weights_norm,286                    hparams.expert_weights_scale,287                    (llama_expert_gating_func_type) hparams.expert_gating_func,288                    il);289            cb(moe_out, "ffn_moe_out", il);290 291            // Always-on shared expert, summed in parallel.292            ggml_tensor * ffn_shexp = build_ffn(cur,293                    model.layers[il].ffn_up_shexp,   NULL, NULL,294                    model.layers[il].ffn_gate_shexp, NULL, NULL,295                    model.layers[il].ffn_down_shexp, NULL, NULL,296                    NULL,297                    LLM_FFN_SILU, LLM_FFN_PAR, il);298            cb(ffn_shexp, "ffn_shexp", il);299 300            cur = ggml_add(ctx0, moe_out, ffn_shexp);301            cb(cur, "ffn_out", il);302        } else {303            // Dense FFN for the leading n_layer_dense_lead layers (XS.2: 1, M.1: 3)304            cur = build_ffn(cur,305                    model.layers[il].ffn_up,   NULL, NULL,306                    model.layers[il].ffn_gate, NULL, NULL,307                    model.layers[il].ffn_down, NULL, NULL,308                    NULL,309                    LLM_FFN_SILU, LLM_FFN_PAR, il);310            cb(cur, "ffn_out", il);311        }312 313        // No post-ffn norm314        cur = ggml_add(ctx0, cur, ffn_inp);315        cur = build_cvec(cur, il);316        cb(cur, "l_out", il);317 318        inpL = cur;319    }320 321    cur = inpL;322    cur = build_norm(cur, model.output_norm, NULL, LLM_NORM_RMS, -1);323    cb(cur, "result_norm", -1);324    res->t_embd = cur;325 326    cur = build_lora_mm(model.output, cur);327    cb(cur, "result_output", -1);328    res->t_logits = cur;329 330    ggml_build_forward_expand(gf, cur);331}332