mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-06-19 15:52:08 +00:00
Enable the qwen3 MOE
Signed-off-by: yuanwu <yuan.wu@intel.com>
This commit is contained in:
parent
638714f964
commit
8c182415c2
@ -112,6 +112,9 @@ try:
|
||||
from text_generation_server.models.custom_modeling.flash_qwen3_modeling import (
|
||||
Qwen3ForCausalLM,
|
||||
)
|
||||
from text_generation_server.models.custom_modeling.flash_qwen3_moe_modeling import (
|
||||
Qwen3MoeForCausalLM,
|
||||
)
|
||||
from text_generation_server.models.custom_modeling.flash_mistral_modeling import (
|
||||
FlashMistralForCausalLM,
|
||||
)
|
||||
@ -301,6 +304,11 @@ class ModelType(enum.Enum):
|
||||
"name": "Qwen 3",
|
||||
"url": "https://huggingface.co/collections/Qwen/qwen3-67dd247413f0e2e4f653967f",
|
||||
}
|
||||
QWEN3_MOE = {
|
||||
"type": "qwen3_moe",
|
||||
"name": "Qwen 3 Moe",
|
||||
"url": "https://huggingface.co/collections/Qwen/qwen3-67dd247413f0e2e4f653967f",
|
||||
}
|
||||
|
||||
GALACTICA = {
|
||||
"type": "galactica",
|
||||
@ -806,6 +814,19 @@ def get_model(
|
||||
trust_remote_code=trust_remote_code,
|
||||
lora_adapter_ids=lora_adapter_ids,
|
||||
)
|
||||
elif model_type == QWEN3_MOE:
|
||||
return FlashCausalLM(
|
||||
model_id=model_id,
|
||||
model_class=Qwen3MoeForCausalLM,
|
||||
revision=revision,
|
||||
quantize=quantize,
|
||||
speculator=speculator,
|
||||
dtype=dtype,
|
||||
kv_cache_dtype=kv_cache_dtype,
|
||||
trust_remote_code=trust_remote_code,
|
||||
lora_adapter_ids=lora_adapter_ids,
|
||||
)
|
||||
|
||||
elif model_type == MLLAMA:
|
||||
return FlashMllamaCausalLM(
|
||||
model_id=model_id,
|
||||
|
@ -65,6 +65,7 @@ class Qwen3Attention(nn.Module):
|
||||
f"and `num_shards`: {weights.process_group.size()}"
|
||||
)
|
||||
self.num_heads = self.num_heads // weights.process_group.size()
|
||||
# self.num_key_value_heads = config.num_key_value_heads
|
||||
self.num_key_value_heads = (
|
||||
config.num_key_value_heads // weights.process_group.size()
|
||||
)
|
||||
|
@ -0,0 +1,785 @@
|
||||
# coding=utf-8
|
||||
# Copyright 5 The Qwen team, Alibaba Group and the HuggingFace Inc. team. All rights reserved.
|
||||
#
|
||||
# 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 typing import List, Optional, Tuple, Type
|
||||
|
||||
import torch
|
||||
from torch import nn
|
||||
from text_generation_server.layers.attention import (
|
||||
Seqlen,
|
||||
HPUPagedAttentionMetadata,
|
||||
)
|
||||
from text_generation_server.layers.moe import DenseMoELayer, MoELayer, SparseMoELayer
|
||||
from text_generation_server.layers import (
|
||||
TensorParallelEmbedding,
|
||||
SpeculativeHead,
|
||||
FastLinear,
|
||||
)
|
||||
|
||||
|
||||
from text_generation_server.layers.layernorm import (
|
||||
FastRMSNorm,
|
||||
)
|
||||
from .flash_qwen2_modeling import Qwen2MLP
|
||||
from .flash_qwen3_modeling import Qwen3Attention
|
||||
from transformers.activations import ACT2FN
|
||||
|
||||
|
||||
# import torch
|
||||
# import torch.nn.functional as F
|
||||
# from torch import nn
|
||||
|
||||
# from ...activations import ACT2FN
|
||||
# from ...cache_utils import Cache, DynamicCache, SlidingWindowCache, StaticCache
|
||||
# from ...generation import GenerationMixin
|
||||
# from ...integrations import use_kernel_forward_from_hub
|
||||
# from ...modeling_attn_mask_utils import AttentionMaskConverter
|
||||
# from ...modeling_flash_attention_utils import FlashAttentionKwargs
|
||||
# from ...modeling_outputs import (
|
||||
# BaseModelOutputWithPast,
|
||||
# CausalLMOutputWithPast,
|
||||
# MoeCausalLMOutputWithPast,
|
||||
# MoeModelOutputWithPast,
|
||||
# QuestionAnsweringModelOutput,
|
||||
# SequenceClassifierOutputWithPast,
|
||||
# TokenClassifierOutput,
|
||||
# )
|
||||
# from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update
|
||||
# from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel
|
||||
# from ...processing_utils import Unpack
|
||||
# from ...utils import (
|
||||
# LossKwargs,
|
||||
# add_code_sample_docstrings,
|
||||
# add_start_docstrings,
|
||||
# add_start_docstrings_to_model_forward,
|
||||
# can_return_tuple,
|
||||
# is_torch_flex_attn_available,
|
||||
# logging,
|
||||
# replace_return_docstrings,
|
||||
# )
|
||||
|
||||
|
||||
def rotate_half(x):
|
||||
"""Rotates half the hidden dims of the input."""
|
||||
x1 = x[..., : x.shape[-1] // 2]
|
||||
x2 = x[..., x.shape[-1] // 2 :]
|
||||
return torch.cat((-x2, x1), dim=-1)
|
||||
|
||||
|
||||
def apply_rotary_pos_emb(q, k, cos, sin, position_ids=None, unsqueeze_dim=1):
|
||||
"""Applies Rotary Position Embedding to the query and key tensors.
|
||||
|
||||
Args:
|
||||
q (`torch.Tensor`): The query tensor.
|
||||
k (`torch.Tensor`): The key tensor.
|
||||
cos (`torch.Tensor`): The cosine part of the rotary embedding.
|
||||
sin (`torch.Tensor`): The sine part of the rotary embedding.
|
||||
position_ids (`torch.Tensor`, *optional*):
|
||||
Deprecated and unused.
|
||||
unsqueeze_dim (`int`, *optional*, defaults to 1):
|
||||
The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
|
||||
sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
|
||||
that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
|
||||
k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
|
||||
cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
|
||||
the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
|
||||
Returns:
|
||||
`tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
|
||||
"""
|
||||
cos = cos.unsqueeze(unsqueeze_dim)
|
||||
sin = sin.unsqueeze(unsqueeze_dim)
|
||||
q_embed = (q * cos) + (rotate_half(q) * sin)
|
||||
k_embed = (k * cos) + (rotate_half(k) * sin)
|
||||
return q_embed, k_embed
|
||||
|
||||
|
||||
def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
|
||||
"""
|
||||
This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
|
||||
num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
|
||||
"""
|
||||
batch, num_key_value_heads, slen, head_dim = hidden_states.shape
|
||||
if n_rep == 1:
|
||||
return hidden_states
|
||||
hidden_states = hidden_states[:, :, None, :, :].expand(
|
||||
batch, num_key_value_heads, n_rep, slen, head_dim
|
||||
)
|
||||
return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
|
||||
|
||||
|
||||
def eager_attention_forward(
|
||||
module: nn.Module,
|
||||
query: torch.Tensor,
|
||||
key: torch.Tensor,
|
||||
value: torch.Tensor,
|
||||
attention_mask: Optional[torch.Tensor],
|
||||
scaling: float,
|
||||
dropout: float = 0.0,
|
||||
**kwargs,
|
||||
):
|
||||
key_states = repeat_kv(key, module.num_key_value_groups)
|
||||
value_states = repeat_kv(value, module.num_key_value_groups)
|
||||
|
||||
attn_weights = torch.matmul(query, key_states.transpose(2, 3)) * scaling
|
||||
if attention_mask is not None:
|
||||
causal_mask = attention_mask[:, :, :, : key_states.shape[-2]]
|
||||
attn_weights = attn_weights + causal_mask
|
||||
|
||||
attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(
|
||||
query.dtype
|
||||
)
|
||||
attn_weights = nn.functional.dropout(
|
||||
attn_weights, p=dropout, training=module.training
|
||||
)
|
||||
attn_output = torch.matmul(attn_weights, value_states)
|
||||
attn_output = attn_output.transpose(1, 2).contiguous()
|
||||
|
||||
return attn_output, attn_weights
|
||||
|
||||
|
||||
# class Qwen3MoeAttention(nn.Module):
|
||||
# """Multi-headed attention from 'Attention Is All You Need' paper"""
|
||||
|
||||
# def __init__(self, config: Qwen3MoeConfig, layer_idx: int):
|
||||
# super().__init__()
|
||||
# self.config = config
|
||||
# self.layer_idx = layer_idx
|
||||
# self.head_dim = getattr(config, "head_dim", config.hidden_size // config.num_attention_heads)
|
||||
# self.num_key_value_groups = config.num_attention_heads // config.num_key_value_heads
|
||||
# self.scaling = self.head_dim**-0.5
|
||||
# self.attention_dropout = config.attention_dropout
|
||||
# self.is_causal = True
|
||||
|
||||
# self.q_proj = nn.Linear(
|
||||
# config.hidden_size, config.num_attention_heads * self.head_dim, bias=config.attention_bias
|
||||
# )
|
||||
# self.k_proj = nn.Linear(
|
||||
# config.hidden_size, config.num_key_value_heads * self.head_dim, bias=config.attention_bias
|
||||
# )
|
||||
# self.v_proj = nn.Linear(
|
||||
# config.hidden_size, config.num_key_value_heads * self.head_dim, bias=config.attention_bias
|
||||
# )
|
||||
# self.o_proj = nn.Linear(
|
||||
# config.num_attention_heads * self.head_dim, config.hidden_size, bias=config.attention_bias
|
||||
# )
|
||||
# self.q_norm = Qwen3MoeRMSNorm(self.head_dim, eps=config.rms_norm_eps) # unlike olmo, only on the head dim!
|
||||
# self.k_norm = Qwen3MoeRMSNorm(self.head_dim, eps=config.rms_norm_eps) # thus post q_norm does not need reshape
|
||||
# self.sliding_window = config.sliding_window
|
||||
# if not (
|
||||
# self.config.use_sliding_window
|
||||
# and getattr(self.config, "sliding_window", None) is not None
|
||||
# and self.layer_idx >= self.config.max_window_layers
|
||||
# ):
|
||||
# self.sliding_window = None
|
||||
|
||||
# def forward(
|
||||
# self,
|
||||
# hidden_states: torch.Tensor,
|
||||
# position_embeddings: Tuple[torch.Tensor, torch.Tensor],
|
||||
# attention_mask: Optional[torch.Tensor],
|
||||
# cache_position: Optional[torch.LongTensor] = None,
|
||||
# ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
||||
# input_shape = hidden_states.shape[:-1]
|
||||
# hidden_shape = (*input_shape, -1, self.head_dim)
|
||||
|
||||
# query_states = self.q_norm(self.q_proj(hidden_states).view(hidden_shape)).transpose(1, 2)
|
||||
# key_states = self.k_norm(self.k_proj(hidden_states).view(hidden_shape)).transpose(1, 2)
|
||||
# value_states = self.v_proj(hidden_states).view(hidden_shape).transpose(1, 2)
|
||||
|
||||
# cos, sin = position_embeddings
|
||||
# query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin)
|
||||
|
||||
# if past_key_value is not None:
|
||||
# # sin and cos are specific to RoPE models; cache_position needed for the static cache
|
||||
# cache_kwargs = {"sin": sin, "cos": cos, "cache_position": cache_position}
|
||||
# key_states, value_states = past_key_value.update(key_states, value_states, self.layer_idx, cache_kwargs)
|
||||
|
||||
# attention_interface: Callable = eager_attention_forward
|
||||
# if self.config._attn_implementation != "eager":
|
||||
# if self.config._attn_implementation == "sdpa" and kwargs.get("output_attentions", False):
|
||||
# logger.warning_once(
|
||||
# "`torch.nn.functional.scaled_dot_product_attention` does not support `output_attentions=True`. Falling back to "
|
||||
# 'eager attention. This warning can be removed using the argument `attn_implementation="eager"` when loading the model.'
|
||||
# )
|
||||
# else:
|
||||
# attention_interface = ALL_ATTENTION_FUNCTIONS[self.config._attn_implementation]
|
||||
|
||||
# attn_output, attn_weights = attention_interface(
|
||||
# self,
|
||||
# query_states,
|
||||
# key_states,
|
||||
# value_states,
|
||||
# attention_mask,
|
||||
# dropout=0.0 if not self.training else self.attention_dropout,
|
||||
# scaling=self.scaling,
|
||||
# sliding_window=self.sliding_window, # diff with Llama
|
||||
# **kwargs,
|
||||
# )
|
||||
|
||||
# attn_output = attn_output.reshape(*input_shape, -1).contiguous()
|
||||
# attn_output = self.o_proj(attn_output)
|
||||
# return attn_output, attn_weights
|
||||
|
||||
|
||||
class Qwen3MoE(nn.Module):
|
||||
def __init__(self, prefix, config, moe_layer_cls: Type[MoELayer], weights):
|
||||
super().__init__()
|
||||
|
||||
# gating
|
||||
self.gate = FastLinear.load(config, f"{prefix}.gate", weights, bias=False)
|
||||
|
||||
self.moe = moe_layer_cls(
|
||||
n_expert_group=None,
|
||||
n_experts=config.num_experts,
|
||||
prefix=f"{prefix}.experts",
|
||||
renormalize=True,
|
||||
topk=config.num_experts_per_tok,
|
||||
topk_group=None,
|
||||
weights=weights,
|
||||
)
|
||||
# gate_proj_name="w1",
|
||||
# up_proj_name="w3",
|
||||
# down_proj_name="w2",
|
||||
|
||||
assert isinstance(self.moe, MoELayer)
|
||||
|
||||
self.process_group = weights.process_group
|
||||
|
||||
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
||||
# router_logits: (num_tokens, n_experts)
|
||||
router_logits = self.gate(x)
|
||||
out = self.moe(x, gating_output=router_logits)
|
||||
|
||||
# Reduce sum
|
||||
if self.process_group.size() > 1:
|
||||
torch.distributed.all_reduce(out, group=self.process_group)
|
||||
|
||||
return out.view(*x.shape)
|
||||
|
||||
|
||||
class Qwen3MoeMLP(nn.Module):
|
||||
def __init__(self, config, intermediate_size=None):
|
||||
super().__init__()
|
||||
self.config = config
|
||||
self.hidden_size = config.hidden_size
|
||||
self.intermediate_size = (
|
||||
intermediate_size
|
||||
if intermediate_size is not None
|
||||
else config.intermediate_size
|
||||
)
|
||||
self.gate_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
|
||||
self.up_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
|
||||
self.down_proj = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
|
||||
self.act_fn = ACT2FN[config.hidden_act]
|
||||
|
||||
def forward(self, x):
|
||||
down_proj = self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
|
||||
return down_proj
|
||||
|
||||
|
||||
# class Qwen3MoeSparseMoeBlock(nn.Module):
|
||||
# def __init__(self, config):
|
||||
# super().__init__()
|
||||
# self.num_experts = config.num_experts
|
||||
# self.top_k = config.num_experts_per_tok
|
||||
# self.norm_topk_prob = config.norm_topk_prob
|
||||
|
||||
# # gating
|
||||
# self.gate = nn.Linear(config.hidden_size, config.num_experts, bias=False)
|
||||
# self.experts = nn.ModuleList(
|
||||
# [Qwen3MoeMLP(config, intermediate_size=config.moe_intermediate_size) for _ in range(self.num_experts)]
|
||||
# )
|
||||
|
||||
# def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
|
||||
# """ """
|
||||
# batch_size, sequence_length, hidden_dim = hidden_states.shape
|
||||
# hidden_states = hidden_states.view(-1, hidden_dim)
|
||||
# # router_logits: (batch * sequence_length, n_experts)
|
||||
# router_logits = self.gate(hidden_states)
|
||||
|
||||
# routing_weights = F.softmax(router_logits, dim=1, dtype=torch.float)
|
||||
# routing_weights, selected_experts = torch.topk(routing_weights, self.top_k, dim=-1)
|
||||
# if self.norm_topk_prob: # only diff with mixtral sparse moe block!
|
||||
# routing_weights /= routing_weights.sum(dim=-1, keepdim=True)
|
||||
# # we cast back to the input dtype
|
||||
# routing_weights = routing_weights.to(hidden_states.dtype)
|
||||
|
||||
# final_hidden_states = torch.zeros(
|
||||
# (batch_size * sequence_length, hidden_dim), dtype=hidden_states.dtype, device=hidden_states.device
|
||||
# )
|
||||
|
||||
# # One hot encode the selected experts to create an expert mask
|
||||
# # this will be used to easily index which expert is going to be sollicitated
|
||||
# expert_mask = torch.nn.functional.one_hot(selected_experts, num_classes=self.num_experts).permute(2, 1, 0)
|
||||
|
||||
# # Loop over all available experts in the model and perform the computation on each expert
|
||||
# for expert_idx in range(self.num_experts):
|
||||
# expert_layer = self.experts[expert_idx]
|
||||
# idx, top_x = torch.where(expert_mask[expert_idx])
|
||||
|
||||
# # Index the correct hidden states and compute the expert hidden state for
|
||||
# # the current expert. We need to make sure to multiply the output hidden
|
||||
# # states by `routing_weights` on the corresponding tokens (top-1 and top-2)
|
||||
# current_state = hidden_states[None, top_x].reshape(-1, hidden_dim)
|
||||
# current_hidden_states = expert_layer(current_state) * routing_weights[top_x, idx, None]
|
||||
|
||||
# # However `index_add_` only support torch tensors for indexing so we'll use
|
||||
# # the `top_x` tensor here.
|
||||
# final_hidden_states.index_add_(0, top_x, current_hidden_states.to(hidden_states.dtype))
|
||||
# final_hidden_states = final_hidden_states.reshape(batch_size, sequence_length, hidden_dim)
|
||||
# return final_hidden_states, router_logits
|
||||
|
||||
|
||||
# @use_kernel_forward_from_hub("RMSNorm")
|
||||
# class Qwen3MoeRMSNorm(nn.Module):
|
||||
# def __init__(self, hidden_size, eps=1e-6):
|
||||
# """
|
||||
# Qwen3MoeRMSNorm is equivalent to T5LayerNorm
|
||||
# """
|
||||
# super().__init__()
|
||||
# self.weight = nn.Parameter(torch.ones(hidden_size))
|
||||
# self.variance_epsilon = eps
|
||||
|
||||
# def forward(self, hidden_states):
|
||||
# input_dtype = hidden_states.dtype
|
||||
# hidden_states = hidden_states.to(torch.float32)
|
||||
# variance = hidden_states.pow(2).mean(-1, keepdim=True)
|
||||
# hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
|
||||
# return self.weight * hidden_states.to(input_dtype)
|
||||
|
||||
# def extra_repr(self):
|
||||
# return f"{tuple(self.weight.shape)}, eps={self.variance_epsilon}"
|
||||
|
||||
|
||||
class Qwen3MoeDecoderLayer(nn.Module):
|
||||
def __init__(self, config, prefix, weights, layer_idx: int):
|
||||
super().__init__()
|
||||
self.hidden_size = config.hidden_size
|
||||
|
||||
self.self_attn = Qwen3Attention(
|
||||
config, prefix=f"{prefix}.self_attn", weights=weights, layer_idx=layer_idx
|
||||
)
|
||||
moe_layer_cls = (
|
||||
SparseMoELayer if SparseMoELayer.is_supported(weights) else DenseMoELayer
|
||||
)
|
||||
|
||||
moe_layer_cls = (
|
||||
SparseMoELayer if SparseMoELayer.is_supported(weights) else DenseMoELayer
|
||||
)
|
||||
|
||||
if (layer_idx not in config.mlp_only_layers) and (
|
||||
config.num_experts > 0 and (layer_idx + 1) % config.decoder_sparse_step == 0
|
||||
):
|
||||
self.mlp = Qwen3MoE(f"{prefix}.mlp", config, moe_layer_cls, weights)
|
||||
|
||||
else:
|
||||
self.mlp = Qwen2MLP(config=config, prefix=f"{prefix}.mlp", weights=weights)
|
||||
|
||||
self.input_layernorm = FastRMSNorm.load(
|
||||
prefix=f"{prefix}.input_layernorm", weights=weights, eps=config.rms_norm_eps
|
||||
)
|
||||
self.post_attention_layernorm = FastRMSNorm.load(
|
||||
prefix=f"{prefix}.post_attention_layernorm",
|
||||
weights=weights,
|
||||
eps=config.rms_norm_eps,
|
||||
)
|
||||
|
||||
def forward(
|
||||
self,
|
||||
hidden_states,
|
||||
residual,
|
||||
cos,
|
||||
sin,
|
||||
cu_seqlen_prefill,
|
||||
kv_cache,
|
||||
slots,
|
||||
seqlen,
|
||||
hpu_attention_meta,
|
||||
) -> torch.Tensor:
|
||||
if residual is None:
|
||||
residual = hidden_states
|
||||
|
||||
hidden_states, _ = self.input_layernorm(hidden_states)
|
||||
|
||||
# Self Attention
|
||||
hidden_states = self.self_attn(
|
||||
hidden_states,
|
||||
cos,
|
||||
sin,
|
||||
cu_seqlen_prefill,
|
||||
kv_cache,
|
||||
slots,
|
||||
seqlen,
|
||||
hpu_attention_meta,
|
||||
)
|
||||
|
||||
hidden_states = residual + hidden_states
|
||||
|
||||
# Fully Connected
|
||||
residual = hidden_states
|
||||
hidden_states, _ = self.post_attention_layernorm(hidden_states)
|
||||
|
||||
hidden_states = self.mlp(hidden_states)
|
||||
|
||||
hidden_states = residual + hidden_states
|
||||
return hidden_states
|
||||
|
||||
|
||||
class Qwen3MoeModel(nn.Module):
|
||||
def __init__(self, config, prefix: str, weights):
|
||||
super().__init__()
|
||||
self.config = config
|
||||
self.padding_idx = config.pad_token_id
|
||||
self.vocab_size = config.vocab_size
|
||||
|
||||
self.layers = nn.ModuleList(
|
||||
[
|
||||
Qwen3MoeDecoderLayer(
|
||||
config=config,
|
||||
prefix=f"{prefix}.layers.{layer_idx}",
|
||||
weights=weights,
|
||||
layer_idx=layer_idx,
|
||||
)
|
||||
for layer_idx in range(config.num_hidden_layers)
|
||||
]
|
||||
)
|
||||
self.norm = FastRMSNorm.load(
|
||||
prefix=f"{prefix}.norm", weights=weights, eps=config.rms_norm_eps
|
||||
)
|
||||
|
||||
def forward(
|
||||
self,
|
||||
inputs_embeds: torch.Tensor,
|
||||
position_ids: torch.Tensor,
|
||||
cu_seqlen_prefill: Optional[torch.Tensor],
|
||||
kv_cache: List[Tuple[torch.Tensor, torch.Tensor]],
|
||||
slots: torch.Tensor,
|
||||
seqlen: Seqlen,
|
||||
hpu_attention_meta: Optional[HPUPagedAttentionMetadata],
|
||||
) -> torch.Tensor:
|
||||
|
||||
hidden_states = inputs_embeds
|
||||
|
||||
# create position embeddings to be shared across the decoder layers
|
||||
cos, sin = self.layers[0].self_attn.rotary_emb.get_cos_sin(
|
||||
position_ids,
|
||||
)
|
||||
|
||||
residual = None
|
||||
for i, decoder_layer in enumerate(self.layers):
|
||||
hidden_states = decoder_layer(
|
||||
hidden_states,
|
||||
residual,
|
||||
cos,
|
||||
sin,
|
||||
cu_seqlen_prefill,
|
||||
kv_cache[i],
|
||||
slots,
|
||||
seqlen,
|
||||
hpu_attention_meta,
|
||||
)
|
||||
|
||||
hidden_states, _ = self.norm(hidden_states)
|
||||
|
||||
# add hidden states from the last decoder layer
|
||||
return hidden_states
|
||||
|
||||
|
||||
# def _update_causal_mask(
|
||||
# self,
|
||||
# attention_mask: Union[torch.Tensor, "BlockMask"],
|
||||
# input_tensor: torch.Tensor,
|
||||
# cache_position: torch.Tensor,
|
||||
# past_key_values: Cache,
|
||||
# output_attentions: bool = False,
|
||||
# ):
|
||||
# if self.config._attn_implementation == "flash_attention_2":
|
||||
# if attention_mask is not None and past_key_values is not None:
|
||||
# is_padding_right = attention_mask[:, -1].sum().item() != input_tensor.size()[0]
|
||||
# if is_padding_right:
|
||||
# raise ValueError(
|
||||
# "You are attempting to perform batched generation with padding_side='right'"
|
||||
# " this may lead to unexpected behaviour for Flash Attention version of Qwen3Moe. Make sure to "
|
||||
# " call `tokenizer.padding_side = 'left'` before tokenizing the input. "
|
||||
# )
|
||||
# if attention_mask is not None and 0.0 in attention_mask:
|
||||
# return attention_mask
|
||||
# return None
|
||||
|
||||
# # For SDPA, when possible, we will rely on its `is_causal` argument instead of its `attn_mask` argument, in
|
||||
# # order to dispatch on Flash Attention 2. This feature is not compatible with static cache, as SDPA will fail
|
||||
# # to infer the attention mask.
|
||||
# past_seen_tokens = past_key_values.get_seq_length() if past_key_values is not None else 0
|
||||
# using_static_cache = isinstance(past_key_values, StaticCache)
|
||||
# using_sliding_window_cache = isinstance(past_key_values, SlidingWindowCache)
|
||||
|
||||
# # When output attentions is True, sdpa implementation's forward method calls the eager implementation's forward
|
||||
# if (
|
||||
# self.config._attn_implementation == "sdpa"
|
||||
# and not (using_static_cache or using_sliding_window_cache)
|
||||
# and not output_attentions
|
||||
# ):
|
||||
# if AttentionMaskConverter._ignore_causal_mask_sdpa(
|
||||
# attention_mask,
|
||||
# inputs_embeds=input_tensor,
|
||||
# past_key_values_length=past_seen_tokens,
|
||||
# sliding_window=self.config.sliding_window,
|
||||
# is_training=self.training,
|
||||
# ):
|
||||
# return None
|
||||
|
||||
# dtype = input_tensor.dtype
|
||||
# min_dtype = torch.finfo(dtype).min
|
||||
# sequence_length = input_tensor.shape[1]
|
||||
# # SlidingWindowCache or StaticCache
|
||||
# if using_sliding_window_cache or using_static_cache:
|
||||
# target_length = past_key_values.get_max_cache_shape()
|
||||
# # DynamicCache or no cache
|
||||
# else:
|
||||
# target_length = (
|
||||
# attention_mask.shape[-1]
|
||||
# if isinstance(attention_mask, torch.Tensor)
|
||||
# else past_seen_tokens + sequence_length + 1
|
||||
# )
|
||||
|
||||
# # In case the provided `attention` mask is 2D, we generate a causal mask here (4D).
|
||||
# causal_mask = self._prepare_4d_causal_attention_mask_with_cache_position(
|
||||
# attention_mask,
|
||||
# sequence_length=sequence_length,
|
||||
# target_length=target_length,
|
||||
# dtype=dtype,
|
||||
# cache_position=cache_position,
|
||||
# batch_size=input_tensor.shape[0],
|
||||
# config=self.config,
|
||||
# past_key_values=past_key_values,
|
||||
# )
|
||||
|
||||
# if (
|
||||
# self.config._attn_implementation == "sdpa"
|
||||
# and attention_mask is not None
|
||||
# and attention_mask.device.type in ["cuda", "xpu", "npu"]
|
||||
# and not output_attentions
|
||||
# ):
|
||||
# # Attend to all tokens in fully masked rows in the causal_mask, for example the relevant first rows when
|
||||
# # using left padding. This is required by F.scaled_dot_product_attention memory-efficient attention path.
|
||||
# # Details: https://github.com/pytorch/pytorch/issues/110213
|
||||
# causal_mask = AttentionMaskConverter._unmask_unattended(causal_mask, min_dtype)
|
||||
|
||||
# return causal_mask
|
||||
|
||||
# @staticmethod
|
||||
# def _prepare_4d_causal_attention_mask_with_cache_position(
|
||||
# attention_mask: torch.Tensor,
|
||||
# sequence_length: int,
|
||||
# target_length: int,
|
||||
# dtype: torch.dtype,
|
||||
# cache_position: torch.Tensor,
|
||||
# batch_size: int,
|
||||
# config: Qwen3MoeConfig,
|
||||
# past_key_values: Cache,
|
||||
# ):
|
||||
# """
|
||||
# Creates a causal 4D mask of shape `(batch_size, 1, query_length, key_value_length)` from a 2D mask of shape
|
||||
# `(batch_size, key_value_length)`, or if the input `attention_mask` is already 4D, do nothing.
|
||||
|
||||
# Args:
|
||||
# attention_mask (`torch.Tensor`):
|
||||
# A 2D attention mask of shape `(batch_size, key_value_length)` or a 4D attention mask of shape `(batch_size, 1, query_length, key_value_length)`.
|
||||
# sequence_length (`int`):
|
||||
# The sequence length being processed.
|
||||
# target_length (`int`):
|
||||
# The target length: when generating with static cache, the mask should be as long as the static cache, to account for the 0 padding, the part of the cache that is not filled yet.
|
||||
# dtype (`torch.dtype`):
|
||||
# The dtype to use for the 4D attention mask.
|
||||
# cache_position (`torch.Tensor`):
|
||||
# Indices depicting the position of the input sequence tokens in the sequence.
|
||||
# batch_size (`torch.Tensor`):
|
||||
# Batch size.
|
||||
# config (`Qwen3MoeConfig`):
|
||||
# The model's configuration class
|
||||
# past_key_values (`Cache`):
|
||||
# The cache class that is being used currently to generate
|
||||
# """
|
||||
# if attention_mask is not None and attention_mask.dim() == 4:
|
||||
# # In this case we assume that the mask comes already in inverted form and requires no inversion or slicing.
|
||||
# causal_mask = attention_mask
|
||||
# else:
|
||||
# min_dtype = torch.finfo(dtype).min
|
||||
# causal_mask = torch.full(
|
||||
# (sequence_length, target_length), fill_value=min_dtype, dtype=dtype, device=cache_position.device
|
||||
# )
|
||||
# diagonal_attend_mask = torch.arange(target_length, device=cache_position.device) > cache_position.reshape(
|
||||
# -1, 1
|
||||
# )
|
||||
# if config.get_text_config().sliding_window is not None:
|
||||
# # if we have sliding window, we should not attend to tokens beyond sliding window length, so we mask them out also
|
||||
# # the check is needed to verify is current checkpoint was trained with sliding window or not
|
||||
# if not isinstance(past_key_values, SlidingWindowCache) or sequence_length > target_length:
|
||||
# sliding_attend_mask = torch.arange(target_length, device=cache_position.device) <= (
|
||||
# cache_position.reshape(-1, 1) - config.get_text_config().sliding_window
|
||||
# )
|
||||
# diagonal_attend_mask.bitwise_or_(sliding_attend_mask)
|
||||
# causal_mask *= diagonal_attend_mask
|
||||
# causal_mask = causal_mask[None, None, :, :].expand(batch_size, 1, -1, -1)
|
||||
# if attention_mask is not None:
|
||||
# causal_mask = causal_mask.clone() # copy to contiguous memory for in-place edit
|
||||
# if attention_mask.shape[-1] > target_length:
|
||||
# attention_mask = attention_mask[:, :target_length]
|
||||
# mask_length = attention_mask.shape[-1]
|
||||
# padding_mask = causal_mask[:, :, :, :mask_length] + attention_mask[:, None, None, :].to(
|
||||
# causal_mask.device
|
||||
# )
|
||||
# padding_mask = padding_mask == 0
|
||||
# causal_mask[:, :, :, :mask_length] = causal_mask[:, :, :, :mask_length].masked_fill(
|
||||
# padding_mask, min_dtype
|
||||
# )
|
||||
# return causal_mask
|
||||
|
||||
|
||||
# def load_balancing_loss_func(
|
||||
# gate_logits: Union[torch.Tensor, Tuple[torch.Tensor], None],
|
||||
# num_experts: Optional[int] = None,
|
||||
# top_k=2,
|
||||
# attention_mask: Optional[torch.Tensor] = None,
|
||||
# ) -> Union[torch.Tensor, int]:
|
||||
# r"""
|
||||
# Computes auxiliary load balancing loss as in Switch Transformer - implemented in Pytorch.
|
||||
|
||||
# See Switch Transformer (https://arxiv.org/abs/2101.03961) for more details. This function implements the loss
|
||||
# function presented in equations (4) - (6) of the paper. It aims at penalizing cases where the routing between
|
||||
# experts is too unbalanced.
|
||||
|
||||
# Args:
|
||||
# gate_logits:
|
||||
# Logits from the `gate`, should be a tuple of model.config.num_hidden_layers tensors of
|
||||
# shape [batch_size X sequence_length, num_experts].
|
||||
# num_experts:
|
||||
# Number of experts
|
||||
# top_k:
|
||||
# The number of experts to route per-token, can be also interpreted as the `top-k` routing
|
||||
# parameter.
|
||||
# attention_mask (`torch.Tensor`, *optional*):
|
||||
# The attention_mask used in forward function
|
||||
# shape [batch_size X sequence_length] if not None.
|
||||
|
||||
# Returns:
|
||||
# The auxiliary loss.
|
||||
# """
|
||||
# if gate_logits is None or not isinstance(gate_logits, tuple):
|
||||
# return 0
|
||||
|
||||
# if isinstance(gate_logits, tuple):
|
||||
# compute_device = gate_logits[0].device
|
||||
# concatenated_gate_logits = torch.cat([layer_gate.to(compute_device) for layer_gate in gate_logits], dim=0)
|
||||
|
||||
# routing_weights = torch.nn.functional.softmax(concatenated_gate_logits, dim=-1)
|
||||
|
||||
# _, selected_experts = torch.topk(routing_weights, top_k, dim=-1)
|
||||
|
||||
# expert_mask = torch.nn.functional.one_hot(selected_experts, num_experts)
|
||||
|
||||
# if attention_mask is None:
|
||||
# # Compute the percentage of tokens routed to each experts
|
||||
# tokens_per_expert = torch.mean(expert_mask.float(), dim=0)
|
||||
|
||||
# # Compute the average probability of routing to these experts
|
||||
# router_prob_per_expert = torch.mean(routing_weights, dim=0)
|
||||
# else:
|
||||
# batch_size, sequence_length = attention_mask.shape
|
||||
# num_hidden_layers = concatenated_gate_logits.shape[0] // (batch_size * sequence_length)
|
||||
|
||||
# # Compute the mask that masks all padding tokens as 0 with the same shape of expert_mask
|
||||
# expert_attention_mask = (
|
||||
# attention_mask[None, :, :, None, None]
|
||||
# .expand((num_hidden_layers, batch_size, sequence_length, top_k, num_experts))
|
||||
# .reshape(-1, top_k, num_experts)
|
||||
# .to(compute_device)
|
||||
# )
|
||||
|
||||
# # Compute the percentage of tokens routed to each experts
|
||||
# tokens_per_expert = torch.sum(expert_mask.float() * expert_attention_mask, dim=0) / torch.sum(
|
||||
# expert_attention_mask, dim=0
|
||||
# )
|
||||
|
||||
# # Compute the mask that masks all padding tokens as 0 with the same shape of tokens_per_expert
|
||||
# router_per_expert_attention_mask = (
|
||||
# attention_mask[None, :, :, None]
|
||||
# .expand((num_hidden_layers, batch_size, sequence_length, num_experts))
|
||||
# .reshape(-1, num_experts)
|
||||
# .to(compute_device)
|
||||
# )
|
||||
|
||||
# # Compute the average probability of routing to these experts
|
||||
# router_prob_per_expert = torch.sum(routing_weights * router_per_expert_attention_mask, dim=0) / torch.sum(
|
||||
# router_per_expert_attention_mask, dim=0
|
||||
# )
|
||||
|
||||
# overall_loss = torch.sum(tokens_per_expert * router_prob_per_expert.unsqueeze(0))
|
||||
# return overall_loss * num_experts
|
||||
|
||||
|
||||
class Qwen3MoeForCausalLM(nn.Module):
|
||||
|
||||
def __init__(self, prefix: str, config, weights):
|
||||
super().__init__()
|
||||
self.model = Qwen3MoeModel(config=config, prefix="model", weights=weights)
|
||||
self.vocab_size = config.vocab_size
|
||||
if config.tie_word_embeddings:
|
||||
suffix = "model.embed_tokens"
|
||||
else:
|
||||
suffix = "lm_head"
|
||||
|
||||
self.lm_head = SpeculativeHead.load(
|
||||
config,
|
||||
prefix=f"{prefix}.{suffix}" if prefix else suffix,
|
||||
weights=weights,
|
||||
)
|
||||
|
||||
self.embed_tokens = TensorParallelEmbedding(
|
||||
prefix=f"{prefix}.embed_tokens" if prefix else "model.embed_tokens",
|
||||
weights=weights,
|
||||
)
|
||||
|
||||
def forward(
|
||||
self,
|
||||
input_ids: torch.Tensor,
|
||||
position_ids: torch.Tensor,
|
||||
cu_seqlen_prefill: Optional[torch.Tensor],
|
||||
kv_cache: List[Tuple[torch.Tensor, torch.Tensor]],
|
||||
slots: torch.Tensor,
|
||||
seqlen: Seqlen,
|
||||
hpu_attention_meta: Optional[HPUPagedAttentionMetadata],
|
||||
lm_head_indices: Optional[torch.Tensor] = None,
|
||||
adapter_data: Optional[torch.Tensor] = None,
|
||||
) -> torch.Tensor:
|
||||
|
||||
inputs_embeds = self.embed_tokens(input_ids)
|
||||
# decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
|
||||
hidden_states = self.model(
|
||||
inputs_embeds,
|
||||
position_ids,
|
||||
cu_seqlen_prefill,
|
||||
kv_cache,
|
||||
slots,
|
||||
seqlen,
|
||||
hpu_attention_meta,
|
||||
)
|
||||
|
||||
# Only compute necessary logits, and do not upcast them to float if we are not computing the loss
|
||||
if lm_head_indices is not None:
|
||||
hidden_states = hidden_states[lm_head_indices]
|
||||
logits = self.lm_head(hidden_states)
|
||||
|
||||
return logits
|
Loading…
Reference in New Issue
Block a user