| #pragma once |
|
|
| #include "llama.h" |
|
|
| #include <array> |
| #include <cassert> |
|
|
| |
| #define LLAMA_MAX_LAYERS 512 |
| #define LLAMA_MAX_EXPERTS 512 |
|
|
| enum llama_expert_gating_func_type { |
| LLAMA_EXPERT_GATING_FUNC_TYPE_NONE = 0, |
| LLAMA_EXPERT_GATING_FUNC_TYPE_SOFTMAX = 1, |
| LLAMA_EXPERT_GATING_FUNC_TYPE_SIGMOID = 2, |
| LLAMA_EXPERT_GATING_FUNC_TYPE_SOFTMAX_WEIGHT = 3, |
| }; |
|
|
| enum llama_swa_type { |
| LLAMA_SWA_TYPE_NONE = 0, |
| LLAMA_SWA_TYPE_STANDARD = 1, |
| LLAMA_SWA_TYPE_CHUNKED = 2, |
| LLAMA_SWA_TYPE_SYMMETRIC = 3, |
| }; |
|
|
| struct llama_hparams_posnet { |
| uint32_t n_embd; |
| uint32_t n_layer; |
| }; |
|
|
| struct llama_hparams_convnext { |
| uint32_t n_embd; |
| uint32_t n_layer; |
| }; |
|
|
| struct llama_hparams { |
| bool vocab_only; |
| bool no_alloc; |
| bool rope_finetuned; |
| bool use_par_res; |
| bool swin_norm; |
|
|
| uint32_t n_ctx_train; |
| uint32_t n_embd; |
| uint32_t n_layer; |
| int32_t n_layer_kv_from_start = -1; |
| uint32_t n_expert = 0; |
| uint32_t n_expert_used = 0; |
| uint32_t n_rel_attn_bkts = 0; |
|
|
| |
| uint32_t n_embd_head_k_full; |
| uint32_t n_embd_head_v_full; |
| uint32_t n_embd_head_k_swa; |
| uint32_t n_embd_head_v_swa; |
|
|
| |
| uint32_t n_rot_full; |
| uint32_t n_rot_swa; |
|
|
| |
| uint32_t n_embd_head_k_mla_impl = 0; |
| uint32_t n_embd_head_v_mla_impl = 0; |
|
|
| |
| struct llama_hparams_posnet posnet; |
| struct llama_hparams_convnext convnext; |
|
|
| uint32_t n_shortconv_l_cache = 0; |
|
|
| std::array<uint32_t, LLAMA_MAX_LAYERS> n_head_arr; |
| std::array<uint32_t, LLAMA_MAX_LAYERS> n_head_kv_arr; |
| std::array<uint32_t, LLAMA_MAX_LAYERS> n_ff_arr; |
|
|
| uint32_t n_layer_dense_lead = 0; |
| uint32_t n_lora_q = 0; |
| uint32_t n_lora_kv = 0; |
| uint32_t n_ff_exp = 0; |
| uint32_t n_ff_shexp = 0; |
| uint32_t n_ff_chexp = 0; |
| uint32_t n_expert_shared = 0; |
| uint32_t n_norm_groups = 0; |
| uint32_t n_expert_groups = 0; |
| uint32_t n_group_used = 0; |
| uint32_t n_group_experts = 0; |
|
|
| float expert_group_scale = 0.05f; |
| float expert_weights_scale = 0.0f; |
| bool expert_weights_norm = false; |
| uint32_t expert_gating_func = LLAMA_EXPERT_GATING_FUNC_TYPE_NONE; |
| uint32_t moe_every_n_layers = 0; |
| uint32_t moe_latent_size = 0; |
| uint32_t nextn_predict_layers = 0; |
|
|
| float f_norm_eps; |
| float f_norm_rms_eps; |
| float f_norm_group_eps; |
|
|
| float f_attn_logit_softcapping = 50.0f; |
| float f_router_logit_softcapping = 30.0f; |
| float f_final_logit_softcapping = 30.0f; |
|
|
| |
| uint32_t rescale_every_n_layers = 0; |
| uint32_t time_mix_extra_dim = 0; |
| uint32_t time_decay_extra_dim = 0; |
| uint32_t wkv_head_size = 0; |
| uint32_t token_shift_count = 2; |
| uint32_t n_lora_decay = 0; |
| uint32_t n_lora_iclr = 0; |
| uint32_t n_lora_value_res_mix = 0; |
| uint32_t n_lora_gate = 0; |
|
|
| float rope_attn_factor = 1.0f; |
| float rope_freq_base_train; |
| float rope_freq_base_train_swa = 10000.0f; |
| float rope_freq_scale_train; |
| float rope_freq_scale_train_swa = 1.0f; |
|
|
| uint32_t n_ctx_orig_yarn; |
| float rope_yarn_log_mul = 0.0f; |
|
|
| float yarn_ext_factor = -1.0f; |
| float yarn_attn_factor = 1.0f; |
| float yarn_beta_fast = 32.0f; |
| float yarn_beta_slow = 1.0f; |
|
|
| std::array<int, 4> rope_sections; |
|
|
| |
| llama_swa_type swa_type = LLAMA_SWA_TYPE_NONE; |
| |
| uint32_t n_swa = 0; |
| |
| |
| |
| |
| std::array<uint32_t, LLAMA_MAX_LAYERS> swa_layers; |
|
|
| |
| uint32_t ssm_d_conv = 0; |
| uint32_t ssm_d_inner = 0; |
| uint32_t ssm_d_state = 0; |
| uint32_t ssm_dt_rank = 0; |
| uint32_t ssm_n_group = 0; |
|
|
| |
| uint32_t n_embd_head_kda = 0; |
|
|
| |
| std::array<bool, LLAMA_MAX_LAYERS> recurrent_layer_arr; |
|
|
| bool ssm_dt_b_c_rms = false; |
|
|
| float f_clamp_kqv = 0.0f; |
| float f_max_alibi_bias = 0.0f; |
| float f_logit_scale = 0.0f; |
|
|
| |
| float f_residual_scale = 0.0f; |
| float f_embedding_scale = 0.0f; |
| float f_attention_scale = 0.0f; |
|
|
| |
| float f_attn_out_scale = 0.0f; |
| uint32_t attn_temp_length = 0; |
|
|
| bool causal_attn = true; |
| bool use_alibi = false; |
| bool attn_soft_cap = false; |
| bool use_kq_norm = false; |
|
|
| |
| uint32_t n_cls_out = 1; |
|
|
| |
| uint32_t n_embd_out_impl = 0; |
|
|
| |
| uint32_t n_moe_layer_step = 0; |
| uint32_t n_no_rope_layer_step = 4; |
| uint32_t n_attn_temp_floor_scale = 0; |
| float f_attn_temp_scale = 0.0f; |
| float f_attn_temp_offset = 0.0f; |
|
|
| |
| uint32_t n_altup = 4; |
| uint32_t i_altup_act = 0; |
| uint32_t laurel_rank = 64; |
| uint32_t n_embd_altup = 256; |
|
|
| |
| uint32_t dense_2_feat_in = 0; |
| uint32_t dense_2_feat_out = 0; |
| uint32_t dense_3_feat_in = 0; |
| uint32_t dense_3_feat_out = 0; |
|
|
| |
| std::array<float, LLAMA_MAX_LAYERS> xielu_alpha_n; |
| std::array<float, LLAMA_MAX_LAYERS> xielu_alpha_p; |
| std::array<float, LLAMA_MAX_LAYERS> xielu_beta; |
| std::array<float, LLAMA_MAX_LAYERS> xielu_eps; |
|
|
| |
| uint32_t indexer_n_head = 0; |
| uint32_t indexer_head_size = 0; |
| uint32_t indexer_top_k = 0; |
|
|
| |
| uint32_t n_deepstack_layers = 0; |
|
|
| |
| |
| llama_token dec_start_token_id = LLAMA_TOKEN_NULL; |
| uint32_t dec_n_layer = 0; |
|
|
| enum llama_pooling_type pooling_type = LLAMA_POOLING_TYPE_NONE; |
| enum llama_rope_type rope_type = LLAMA_ROPE_TYPE_NONE; |
| enum llama_rope_scaling_type rope_scaling_type_train = LLAMA_ROPE_SCALING_TYPE_NONE; |
|
|
|
|
| |
| std::array<float, LLAMA_MAX_LAYERS> swiglu_clamp_exp; |
| std::array<float, LLAMA_MAX_LAYERS> swiglu_clamp_shexp; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| void set_swa_pattern(uint32_t n_pattern, bool dense_first = false); |
|
|
| |
| bool is_swa_any() const; |
|
|
| uint32_t n_head(uint32_t il = 0) const; |
|
|
| uint32_t n_head_kv(uint32_t il = 0) const; |
|
|
| uint32_t n_ff(uint32_t il = 0) const; |
|
|
| uint32_t n_gqa(uint32_t il = 0) const; |
|
|
| uint32_t n_rot(uint32_t il = 0) const; |
|
|
| |
| uint32_t n_embd_inp() const; |
|
|
| |
| uint32_t n_embd_out() const; |
|
|
| |
| uint32_t n_embd_head_k(uint32_t il = 0) const; |
| uint32_t n_embd_head_v(uint32_t il = 0) const; |
|
|
| |
| uint32_t n_embd_k_gqa(uint32_t il = 0) const; |
|
|
| |
| uint32_t n_embd_v_gqa(uint32_t il = 0) const; |
|
|
| |
| bool is_n_embd_k_gqa_variable() const; |
| bool is_n_embd_v_gqa_variable() const; |
|
|
| |
| uint32_t n_embd_k_gqa_max() const; |
| uint32_t n_embd_v_gqa_max() const; |
|
|
| |
| |
| uint32_t n_embd_r() const; |
|
|
| |
| uint32_t n_embd_s() const; |
|
|
| |
| bool is_recurrent(uint32_t il) const; |
|
|
| uint32_t n_pos_per_embd() const; |
|
|
| bool is_swa(uint32_t il) const; |
|
|
| |
| bool is_mla() const; |
|
|
| uint32_t n_embd_head_k_mla() const; |
| uint32_t n_embd_head_v_mla() const; |
|
|
| bool has_kv(uint32_t il) const; |
|
|
| |
| uint32_t n_layer_kv() const; |
|
|
| |
| |
| |
| |
| static bool is_masked_swa(uint32_t n_swa, llama_swa_type swa_type, llama_pos p0, llama_pos p1) { |
| assert(p0 >= 0 && p1 >= 0); |
|
|
| switch (swa_type) { |
| case LLAMA_SWA_TYPE_NONE: |
| { |
| } break; |
| case LLAMA_SWA_TYPE_STANDARD: |
| { |
| if (p1 - p0 >= (int32_t) n_swa) { |
| return true; |
| } |
| } break; |
| case LLAMA_SWA_TYPE_CHUNKED: |
| { |
| const llama_pos pos_chunk_start = (p1 / n_swa) * n_swa; |
|
|
| if (p0 < pos_chunk_start) { |
| return true; |
| } |
| } break; |
| case LLAMA_SWA_TYPE_SYMMETRIC: |
| { |
| const int32_t half_n_swa = (int32_t) n_swa / 2; |
| const int32_t pos_diff = p1 - p0; |
|
|
| |
| if (pos_diff < -half_n_swa || pos_diff > half_n_swa) { |
| return true; |
| } |
| } break; |
| } |
|
|
| return false; |
| } |
|
|
|
|
| bool use_mrope() const; |
| }; |
|
|
| static_assert(std::is_trivially_copyable<llama_hparams>::value, "llama_hparams must be trivially copyable"); |
|
|