| """ | |
| Copyright 2023-2024 SGLang Team | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software | |
| distributed under the License is distributed on an "AS IS" BASIS, | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| See the License for the specific language governing permissions and | |
| limitations under the License. | |
| """ | |
| from sglang.srt.utils import add_prefix | |
| # Adapted from | |
| # https://github.com/SafeAILab/EAGLE/blob/main/eagle/model/cnets.py | |
| """Inference-only LLaMA-EAGLE model compatible with HuggingFace weights.""" | |
| from typing import Iterable, Optional, Tuple | |
| import torch | |
| from torch import nn | |
| from transformers import LlamaConfig | |
| from sglang.srt.distributed import get_pp_group | |
| from sglang.srt.layers.layernorm import RMSNorm | |
| from sglang.srt.layers.linear import QKVParallelLinear | |
| from sglang.srt.layers.logits_processor import LogitsProcessor | |
| from sglang.srt.layers.quantization.base_config import QuantizationConfig | |
| from sglang.srt.layers.vocab_parallel_embedding import ( | |
| ParallelLMHead, | |
| VocabParallelEmbedding, | |
| ) | |
| from sglang.srt.model_executor.forward_batch_info import ForwardBatch, PPProxyTensors | |
| from sglang.srt.model_loader.weight_utils import default_weight_loader | |
| from sglang.srt.models.llama import LlamaDecoderLayer, LlamaForCausalLM, LlamaMLP | |
| class LlamaDecoderLayer(LlamaDecoderLayer): | |
| def __init__( | |
| self, | |
| config: LlamaConfig, | |
| layer_id: int = 0, | |
| quant_config: Optional[QuantizationConfig] = None, | |
| prefix: str = "", | |
| ) -> None: | |
| super().__init__(config, layer_id, quant_config, prefix) | |
| # override qkv | |
| self.self_attn.qkv_proj = QKVParallelLinear( | |
| 2 * self.hidden_size, | |
| self.self_attn.head_dim, | |
| self.self_attn.total_num_heads, | |
| self.self_attn.total_num_kv_heads, | |
| bias=False, | |
| quant_config=quant_config, | |
| prefix=add_prefix("qkv_proj", prefix), | |
| ) | |
| if config.model_type == "llama4_text": | |
| inter_size = config.intermediate_size_mlp | |
| else: | |
| inter_size = config.intermediate_size | |
| self.mlp = LlamaMLP( | |
| config.hidden_size, inter_size, config.hidden_act, quant_config, prefix | |
| ) | |
| self.hidden_norm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps) | |
| def forward( | |
| self, | |
| positions: torch.Tensor, | |
| embeds: torch.Tensor, | |
| hidden_states: torch.Tensor, | |
| forward_batch: ForwardBatch, | |
| residual: Optional[torch.Tensor], | |
| ) -> Tuple[torch.Tensor, torch.Tensor]: | |
| residual = hidden_states | |
| embeds = self.input_layernorm(embeds) | |
| hidden_states = self.hidden_norm(hidden_states) | |
| hidden_states = torch.cat([embeds, hidden_states], dim=-1) | |
| # Self Attention | |
| hidden_states = self.self_attn( | |
| positions=positions, | |
| hidden_states=hidden_states, | |
| forward_batch=forward_batch, | |
| ) | |
| hidden_states, residual = self.post_attention_layernorm(hidden_states, residual) | |
| # Fully Connected | |
| hidden_states = self.mlp(hidden_states) | |
| return hidden_states, residual | |
| class LlamaModel(nn.Module): | |
| def __init__( | |
| self, | |
| config: LlamaConfig, | |
| quant_config: Optional[QuantizationConfig] = None, | |
| prefix: str = "", | |
| ) -> None: | |
| super().__init__() | |
| self.config = config | |
| self.is_mrope_enabled = ( | |
| hasattr(config, "rope_scaling") | |
| and config.rope_scaling is not None | |
| and "mrope_section" in config.rope_scaling | |
| ) | |
| # fix rope_scaling for qwen2.5-vl | |
| if self.is_mrope_enabled: | |
| config.rope_scaling["rope_type"] = "default" | |
| self.vocab_size = config.vocab_size | |
| self.embed_tokens = VocabParallelEmbedding( | |
| config.vocab_size, | |
| config.hidden_size, | |
| prefix=add_prefix("embed_tokens", prefix), | |
| ) | |
| if hasattr(config, "target_hidden_size"): | |
| self.hidden_size_in = config.target_hidden_size | |
| else: | |
| self.hidden_size_in = config.hidden_size | |
| self.fc = torch.nn.Linear( | |
| self.hidden_size_in * 3, | |
| config.hidden_size, | |
| bias=getattr(config, "bias", False), | |
| ) | |
| self.midlayer = LlamaDecoderLayer(config, 0, quant_config, prefix) | |
| self.norm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps) | |
| def forward( | |
| self, | |
| input_ids: torch.Tensor, | |
| positions: torch.Tensor, | |
| forward_batch: ForwardBatch, | |
| input_embeds: torch.Tensor = None, | |
| pp_proxy_tensors: Optional[PPProxyTensors] = None, | |
| ) -> torch.Tensor: | |
| if input_embeds is None: | |
| embeds = self.embed_tokens(input_ids) | |
| else: | |
| embeds = input_embeds | |
| if self.is_mrope_enabled: | |
| positions = forward_batch.mrope_positions | |
| hidden_states = forward_batch.spec_info.hidden_states | |
| if hidden_states.shape[-1] != embeds.shape[-1]: | |
| hidden_states = self.fc(hidden_states) | |
| residual = None | |
| hidden_states, residual = self.midlayer( | |
| positions, | |
| embeds, | |
| hidden_states, | |
| forward_batch, | |
| residual, | |
| ) | |
| hidden_states_to_logits, hidden_states_to_aux = self.norm( | |
| hidden_states, residual | |
| ) | |
| # For draft decode, we capture the hidden state before norm | |
| return hidden_states_to_logits, [hidden_states_to_aux] | |
| class LlamaForCausalLMEagle3(LlamaForCausalLM): | |
| def __init__( | |
| self, | |
| config: LlamaConfig, | |
| quant_config: Optional[QuantizationConfig] = None, | |
| prefix: str = "", | |
| ) -> None: | |
| nn.Module.__init__(self) | |
| self.config = config | |
| self.quant_config = quant_config | |
| self.pp_group = get_pp_group() | |
| if self.config.num_hidden_layers != 1: | |
| raise ValueError("EAGLE3 currently only supports 1 layer") | |
| self.model = LlamaModel( | |
| config, quant_config=quant_config, prefix=add_prefix("model", prefix) | |
| ) | |
| # Llama 3.2 1B Instruct set tie_word_embeddings to True | |
| # Llama 3.1 8B Instruct set tie_word_embeddings to False | |
| self.load_lm_head_from_target = False | |
| if self.config.tie_word_embeddings: | |
| self.lm_head = self.model.embed_tokens | |
| else: | |
| if config.draft_vocab_size is None: | |
| self.load_lm_head_from_target = True | |
| config.draft_vocab_size = config.vocab_size | |
| self.lm_head = ParallelLMHead( | |
| config.draft_vocab_size, | |
| config.hidden_size, | |
| quant_config=quant_config, | |
| prefix=add_prefix("lm_head", prefix), | |
| ) | |
| self.logits_processor = LogitsProcessor(config) | |
| self.capture_aux_hidden_states = True | |
| self.hot_token_id = None | |
| def load_weights(self, weights: Iterable[Tuple[str, torch.Tensor]]) -> None: | |
| params_dict = dict(self.named_parameters()) | |
| # Define the parameter mapping for stacked parameters | |
| stacked_params_mapping = [ | |
| # (param_name, shard_name, shard_id) | |
| (".qkv_proj", ".q_proj", "q"), | |
| (".qkv_proj", ".k_proj", "k"), | |
| (".qkv_proj", ".v_proj", "v"), | |
| (".gate_up_proj", ".gate_proj", 0), | |
| (".gate_up_proj", ".up_proj", 1), | |
| ] | |
| for name, loaded_weight in weights: | |
| if "d2t" in name: | |
| # d2t stores diffs between draft id and target id | |
| self.hot_token_id = loaded_weight + torch.arange(loaded_weight.shape[0]) | |
| continue | |
| if "t2d" in name: | |
| continue | |
| for param_name, weight_name, shard_id in stacked_params_mapping: | |
| if weight_name not in name: | |
| continue | |
| name = name.replace(weight_name, param_name) | |
| param_name = f"model.{name}" if name not in params_dict else name | |
| if param_name in params_dict: | |
| param = params_dict[param_name] | |
| weight_loader = getattr( | |
| param, "weight_loader", default_weight_loader | |
| ) | |
| weight_loader(param, loaded_weight, shard_id) | |
| break | |
| else: | |
| # Handle regular parameters | |
| param_name = name if name in params_dict else f"model.{name}" | |
| if param_name in params_dict: | |
| param = params_dict[param_name] | |
| weight_loader = getattr( | |
| param, "weight_loader", default_weight_loader | |
| ) | |
| weight_loader(param, loaded_weight) | |
| def get_hot_token_id(self): | |
| return self.hot_token_id | |
| EntryClass = [LlamaForCausalLMEagle3] | |
Xet Storage Details
- Size:
- 9.18 kB
- Xet hash:
- 3bf98741014262bb404a48c5835864c8cd6d6062227dcc8a320bcb029f84ef8c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.