711 lines
26 KiB
Python
711 lines
26 KiB
Python
# Adapted from: https://github.com/vllm-project/vllm/blob/0384aa7150c4c9778efca041ffd1beb3ad2bd694/vllm/model_executor/models/kimi_linear.py
|
|
|
|
from collections.abc import Iterable
|
|
from typing import Optional
|
|
|
|
import torch
|
|
from einops import rearrange
|
|
from torch import nn
|
|
|
|
from sglang.srt.configs.kimi_linear import KimiLinearConfig
|
|
from sglang.srt.distributed import (
|
|
divide,
|
|
get_pp_group,
|
|
get_tensor_model_parallel_world_size,
|
|
tensor_model_parallel_all_reduce,
|
|
)
|
|
from sglang.srt.eplb.expert_distribution import get_global_expert_distribution_recorder
|
|
from sglang.srt.layers.attention.fla.kda import FusedRMSNormGated
|
|
from sglang.srt.layers.layernorm import RMSNorm
|
|
from sglang.srt.layers.linear import (
|
|
ColumnParallelLinear,
|
|
ReplicatedLinear,
|
|
RowParallelLinear,
|
|
)
|
|
from sglang.srt.layers.logits_processor import LogitsProcessor
|
|
from sglang.srt.layers.moe.ep_moe.layer import get_moe_impl_class
|
|
from sglang.srt.layers.moe.fused_moe_triton.layer import FusedMoE
|
|
from sglang.srt.layers.moe.topk import TopK, TopKOutputFormat
|
|
from sglang.srt.layers.quantization.base_config import QuantizationConfig
|
|
from sglang.srt.layers.utils import PPMissingLayer
|
|
from sglang.srt.layers.vocab_parallel_embedding import (
|
|
ParallelLMHead,
|
|
VocabParallelEmbedding,
|
|
)
|
|
from sglang.srt.model_executor.cuda_graph_runner import get_is_capture_mode
|
|
from sglang.srt.model_executor.forward_batch_info import ForwardBatch, PPProxyTensors
|
|
from sglang.srt.model_loader.weight_utils import (
|
|
default_weight_loader,
|
|
maybe_remap_kv_scale_name,
|
|
sharded_weight_loader,
|
|
)
|
|
from sglang.srt.models.deepseek_v2 import DeepseekV2AttentionMLA as KimiMLAAttention
|
|
from sglang.srt.models.llama import LlamaMLP as KimiMLP
|
|
from sglang.srt.models.transformers import maybe_prefix
|
|
from sglang.srt.utils import make_layers
|
|
from sglang.srt.utils.common import BumpAllocator, add_prefix, set_weight_attrs
|
|
|
|
|
|
class KimiMoE(nn.Module):
|
|
def __init__(
|
|
self,
|
|
config: KimiLinearConfig,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
prefix: str = "",
|
|
layer_idx: int = 0,
|
|
alt_stream: Optional[torch.cuda.Stream] = None,
|
|
):
|
|
super().__init__()
|
|
hidden_size = config.hidden_size
|
|
intermediate_size = config.intermediate_size
|
|
moe_intermediate_size = config.moe_intermediate_size
|
|
num_experts = config.num_experts
|
|
moe_renormalize = config.moe_renormalize
|
|
self.tp_size = get_tensor_model_parallel_world_size()
|
|
self.routed_scaling_factor = config.routed_scaling_factor
|
|
self.num_shared_experts = config.num_shared_experts
|
|
self.layer_idx = layer_idx
|
|
self.alt_stream = alt_stream
|
|
|
|
if config.hidden_act != "silu":
|
|
raise ValueError(
|
|
f"Unsupported activation: {config.hidden_act}. "
|
|
"Only silu is supported for now."
|
|
)
|
|
|
|
# Gate always runs at half / full precision for now.
|
|
self.gate = ReplicatedLinear(
|
|
hidden_size,
|
|
num_experts,
|
|
bias=False,
|
|
quant_config=None,
|
|
prefix=f"{prefix}.gate",
|
|
)
|
|
|
|
self.gate.e_score_correction_bias = nn.Parameter(torch.empty(num_experts))
|
|
|
|
self.experts = get_moe_impl_class(quant_config)(
|
|
num_experts=config.n_routed_experts,
|
|
top_k=config.num_experts_per_token,
|
|
hidden_size=config.hidden_size,
|
|
intermediate_size=config.moe_intermediate_size,
|
|
layer_id=self.layer_idx,
|
|
quant_config=quant_config,
|
|
routed_scaling_factor=self.routed_scaling_factor,
|
|
prefix=add_prefix("experts", prefix),
|
|
)
|
|
|
|
self.topk = TopK(
|
|
top_k=config.num_experts_per_token,
|
|
renormalize=moe_renormalize,
|
|
use_grouped_topk=True,
|
|
num_expert_group=config.num_expert_group,
|
|
topk_group=config.topk_group,
|
|
correction_bias=self.gate.e_score_correction_bias,
|
|
quant_config=quant_config,
|
|
routed_scaling_factor=self.routed_scaling_factor,
|
|
apply_routed_scaling_factor_on_output=self.experts.should_fuse_routed_scaling_factor_in_topk,
|
|
# Some Fp4 MoE backends require the output format to be bypassed but the MTP layers are unquantized
|
|
# and requires the output format to be standard. We use quant_config to determine the output format.
|
|
output_format=TopKOutputFormat.STANDARD if quant_config is None else None,
|
|
)
|
|
|
|
if self.num_shared_experts is not None:
|
|
intermediate_size = moe_intermediate_size * self.num_shared_experts
|
|
self.shared_experts = KimiMLP(
|
|
hidden_size=config.hidden_size,
|
|
intermediate_size=intermediate_size,
|
|
hidden_act=config.hidden_act,
|
|
quant_config=quant_config,
|
|
reduce_results=False,
|
|
)
|
|
|
|
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
|
|
num_tokens, hidden_size = hidden_states.shape
|
|
hidden_states = hidden_states.view(-1, hidden_size)
|
|
|
|
shared_output = None
|
|
DUAL_STREAM_TOKEN_THRESHOLD = 1024
|
|
|
|
if (
|
|
self.alt_stream is not None
|
|
and self.num_shared_experts is not None
|
|
and hidden_states.shape[0] > 0
|
|
and hidden_states.shape[0] <= DUAL_STREAM_TOKEN_THRESHOLD
|
|
and get_is_capture_mode()
|
|
):
|
|
current_stream = torch.cuda.current_stream()
|
|
self.alt_stream.wait_stream(current_stream)
|
|
|
|
shared_output = self.shared_experts(hidden_states.clone())
|
|
|
|
with torch.cuda.stream(self.alt_stream):
|
|
router_logits, _ = self.gate(hidden_states)
|
|
topk_output = self.topk(hidden_states, router_logits)
|
|
final_hidden_states = self.experts(hidden_states, topk_output)
|
|
|
|
current_stream.wait_stream(self.alt_stream)
|
|
else:
|
|
if self.num_shared_experts is not None and hidden_states.shape[0] > 0:
|
|
shared_output = self.shared_experts(hidden_states)
|
|
router_logits, _ = self.gate(hidden_states)
|
|
topk_output = self.topk(hidden_states, router_logits)
|
|
final_hidden_states = self.experts(hidden_states, topk_output)
|
|
|
|
if shared_output is not None:
|
|
final_hidden_states = final_hidden_states + shared_output
|
|
|
|
if self.tp_size > 1:
|
|
final_hidden_states = tensor_model_parallel_all_reduce(final_hidden_states)
|
|
return final_hidden_states.view(num_tokens, hidden_size)
|
|
|
|
|
|
class KimiDeltaAttention(nn.Module):
|
|
def __init__(
|
|
self,
|
|
layer_idx: int,
|
|
hidden_size: int,
|
|
config: KimiLinearConfig,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
rms_norm_eps: float = 1e-5,
|
|
prefix: str = "",
|
|
**kwargs,
|
|
) -> None:
|
|
super().__init__()
|
|
self.tp_size = get_tensor_model_parallel_world_size()
|
|
self.hidden_size = hidden_size
|
|
self.config = config
|
|
self.head_dim = config.linear_attn_config["head_dim"]
|
|
self.num_heads = config.linear_attn_config["num_heads"]
|
|
self.layer_idx = layer_idx
|
|
self.prefix = prefix
|
|
assert self.num_heads % self.tp_size == 0
|
|
self.local_num_heads = divide(self.num_heads, self.tp_size)
|
|
|
|
projection_size = self.head_dim * self.num_heads
|
|
self.conv_size = config.linear_attn_config["short_conv_kernel_size"]
|
|
|
|
self.q_proj = ColumnParallelLinear(
|
|
self.hidden_size,
|
|
projection_size,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.q_proj",
|
|
)
|
|
self.k_proj = ColumnParallelLinear(
|
|
self.hidden_size,
|
|
projection_size,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.k_proj",
|
|
)
|
|
self.v_proj = ColumnParallelLinear(
|
|
self.hidden_size,
|
|
projection_size,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.v_proj",
|
|
)
|
|
|
|
self.f_a_proj = ReplicatedLinear(
|
|
self.hidden_size,
|
|
self.head_dim,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.f_a_proj",
|
|
)
|
|
|
|
self.f_b_proj = ColumnParallelLinear(
|
|
self.head_dim,
|
|
projection_size,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.f_b_proj",
|
|
)
|
|
self.dt_bias = nn.Parameter(
|
|
torch.empty(divide(projection_size, self.tp_size), dtype=torch.float32)
|
|
)
|
|
|
|
set_weight_attrs(self.dt_bias, {"weight_loader": sharded_weight_loader(0)})
|
|
|
|
self.b_proj = ColumnParallelLinear(
|
|
self.hidden_size,
|
|
self.num_heads,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.b_proj",
|
|
)
|
|
|
|
self.q_conv1d = ColumnParallelLinear(
|
|
input_size=self.conv_size,
|
|
output_size=projection_size,
|
|
bias=False,
|
|
params_dtype=torch.float32,
|
|
prefix=f"{prefix}.q_conv1d",
|
|
)
|
|
self.k_conv1d = ColumnParallelLinear(
|
|
input_size=self.conv_size,
|
|
output_size=projection_size,
|
|
bias=False,
|
|
params_dtype=torch.float32,
|
|
prefix=f"{prefix}.k_conv1d",
|
|
)
|
|
self.v_conv1d = ColumnParallelLinear(
|
|
input_size=self.conv_size,
|
|
output_size=projection_size,
|
|
bias=False,
|
|
params_dtype=torch.float32,
|
|
prefix=f"{prefix}.v_conv1d",
|
|
)
|
|
# unsqueeze to fit conv1d weights shape into the linear weights shape.
|
|
# Can't do this in `weight_loader` since it already exists in
|
|
# `ColumnParallelLinear` and `set_weight_attrs`
|
|
# doesn't allow to override it
|
|
self.q_conv1d.weight.data = self.q_conv1d.weight.data.unsqueeze(1)
|
|
self.k_conv1d.weight.data = self.k_conv1d.weight.data.unsqueeze(1)
|
|
self.v_conv1d.weight.data = self.v_conv1d.weight.data.unsqueeze(1)
|
|
|
|
self.A_log = nn.Parameter(
|
|
torch.empty(1, 1, self.local_num_heads, 1, dtype=torch.float32)
|
|
)
|
|
set_weight_attrs(self.A_log, {"weight_loader": sharded_weight_loader(2)})
|
|
|
|
self.g_a_proj = ReplicatedLinear(
|
|
self.hidden_size,
|
|
self.head_dim,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.g_a_proj",
|
|
)
|
|
self.g_b_proj = ColumnParallelLinear(
|
|
self.head_dim,
|
|
projection_size,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.g_b_proj",
|
|
)
|
|
self.o_norm = FusedRMSNormGated(
|
|
self.head_dim, eps=rms_norm_eps, activation="sigmoid"
|
|
)
|
|
self.o_proj = RowParallelLinear(
|
|
projection_size,
|
|
self.hidden_size,
|
|
bias=False,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.o_proj",
|
|
)
|
|
|
|
def forward(
|
|
self,
|
|
hidden_states: torch.Tensor,
|
|
positions: torch.Tensor,
|
|
forward_batch: ForwardBatch,
|
|
zero_allocator: BumpAllocator,
|
|
) -> None:
|
|
q_proj_states = self.q_proj(hidden_states)[0]
|
|
k_proj_states = self.k_proj(hidden_states)[0]
|
|
v_proj_states = self.v_proj(hidden_states)[0]
|
|
|
|
q_conv_weights = self.q_conv1d.weight.view(
|
|
self.q_conv1d.weight.size(0), self.q_conv1d.weight.size(2)
|
|
)
|
|
k_conv_weights = self.k_conv1d.weight.view(
|
|
self.k_conv1d.weight.size(0), self.k_conv1d.weight.size(2)
|
|
)
|
|
v_conv_weights = self.v_conv1d.weight.view(
|
|
self.v_conv1d.weight.size(0), self.v_conv1d.weight.size(2)
|
|
)
|
|
|
|
kwargs = {
|
|
"q_proj_states": q_proj_states,
|
|
"k_proj_states": k_proj_states,
|
|
"v_proj_states": v_proj_states,
|
|
"q_conv_weights": q_conv_weights,
|
|
"k_conv_weights": k_conv_weights,
|
|
"v_conv_weights": v_conv_weights,
|
|
"q_conv_bias": self.q_conv1d.bias,
|
|
"k_conv_bias": self.k_conv1d.bias,
|
|
"v_conv_bias": self.v_conv1d.bias,
|
|
"dt_bias": self.dt_bias,
|
|
"b_proj": self.b_proj,
|
|
"f_a_proj": self.f_a_proj,
|
|
"f_b_proj": self.f_b_proj,
|
|
"A_log": self.A_log,
|
|
"head_dim": self.head_dim,
|
|
"hidden_states": hidden_states,
|
|
"layer_id": self.layer_idx,
|
|
}
|
|
|
|
core_attn_out = forward_batch.attn_backend.forward(
|
|
q=None,
|
|
k=None,
|
|
v=None,
|
|
layer=None,
|
|
forward_batch=forward_batch,
|
|
**kwargs,
|
|
)
|
|
|
|
g_proj_states = self.g_b_proj(self.g_a_proj(hidden_states)[0])[0]
|
|
g = rearrange(g_proj_states, "... (h d) -> ... h d", d=self.head_dim)
|
|
core_attn_out = self.o_norm(core_attn_out, g)
|
|
core_attn_out = rearrange(core_attn_out, "1 n h d -> n (h d)")
|
|
|
|
return self.o_proj(core_attn_out)[0]
|
|
|
|
|
|
class KimiDecoderLayer(nn.Module):
|
|
def __init__(
|
|
self,
|
|
config: KimiLinearConfig,
|
|
layer_idx: int,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
prefix: str = "",
|
|
alt_stream: Optional[torch.cuda.Stream] = None,
|
|
) -> None:
|
|
super().__init__()
|
|
self.hidden_size = config.hidden_size
|
|
self.alt_stream = alt_stream
|
|
|
|
self.is_moe = config.is_moe
|
|
|
|
if config.is_kda_layer(layer_idx):
|
|
self.self_attn = KimiDeltaAttention(
|
|
layer_idx=layer_idx,
|
|
hidden_size=config.hidden_size,
|
|
config=config,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.self_attn",
|
|
)
|
|
else:
|
|
self.self_attn = KimiMLAAttention(
|
|
layer_id=layer_idx,
|
|
hidden_size=self.hidden_size,
|
|
num_heads=config.num_attention_heads,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.self_attn",
|
|
config=config,
|
|
qk_nope_head_dim=config.qk_nope_head_dim,
|
|
qk_rope_head_dim=config.qk_rope_head_dim,
|
|
v_head_dim=config.v_head_dim,
|
|
q_lora_rank=config.q_lora_rank,
|
|
kv_lora_rank=config.kv_lora_rank,
|
|
skip_rope=True,
|
|
)
|
|
|
|
if (
|
|
self.is_moe
|
|
and config.num_experts is not None
|
|
and layer_idx >= config.first_k_dense_replace
|
|
and layer_idx % config.moe_layer_freq == 0
|
|
):
|
|
self.block_sparse_moe = KimiMoE(
|
|
config=config,
|
|
quant_config=quant_config,
|
|
layer_idx=layer_idx,
|
|
prefix=f"{prefix}.mlp",
|
|
alt_stream=self.alt_stream,
|
|
)
|
|
self.mlp = self.block_sparse_moe
|
|
else:
|
|
self.mlp = KimiMLP(
|
|
hidden_size=self.hidden_size,
|
|
intermediate_size=config.intermediate_size,
|
|
hidden_act=config.hidden_act,
|
|
quant_config=quant_config,
|
|
prefix=f"{prefix}.mlp",
|
|
)
|
|
self.input_layernorm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
|
self.post_attention_layernorm = RMSNorm(
|
|
config.hidden_size, eps=config.rms_norm_eps
|
|
)
|
|
|
|
def forward(
|
|
self,
|
|
positions: torch.Tensor,
|
|
hidden_states: torch.Tensor,
|
|
forward_batch: ForwardBatch,
|
|
residual: Optional[torch.Tensor],
|
|
zero_allocator: BumpAllocator,
|
|
) -> tuple[torch.Tensor, torch.Tensor]:
|
|
# Self Attention
|
|
if residual is None:
|
|
residual = hidden_states
|
|
hidden_states = self.input_layernorm(hidden_states)
|
|
else:
|
|
hidden_states, residual = self.input_layernorm(hidden_states, residual)
|
|
|
|
hidden_states = self.self_attn(
|
|
hidden_states=hidden_states,
|
|
positions=positions,
|
|
forward_batch=forward_batch,
|
|
zero_allocator=zero_allocator,
|
|
)
|
|
|
|
# Fully Connected
|
|
hidden_states, residual = self.post_attention_layernorm(hidden_states, residual)
|
|
hidden_states = self.mlp(hidden_states)
|
|
return hidden_states, residual
|
|
|
|
|
|
class KimiLinearModel(nn.Module):
|
|
def __init__(
|
|
self,
|
|
config: KimiLinearConfig,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
prefix: str = "",
|
|
):
|
|
super().__init__()
|
|
|
|
self.config = config
|
|
|
|
self.padding_idx = config.pad_token_id
|
|
self.vocab_size = config.vocab_size
|
|
self.pp_group = get_pp_group()
|
|
|
|
if self.pp_group.is_first_rank:
|
|
self.embed_tokens = VocabParallelEmbedding(
|
|
config.vocab_size,
|
|
config.hidden_size,
|
|
prefix=f"{prefix}.embed_tokens",
|
|
)
|
|
else:
|
|
self.embed_tokens = PPMissingLayer()
|
|
|
|
self.alt_stream = torch.cuda.Stream()
|
|
|
|
self.layers, self.start_layer, self.end_layer = make_layers(
|
|
config.num_hidden_layers,
|
|
lambda idx, prefix: KimiDecoderLayer(
|
|
layer_idx=idx,
|
|
config=config,
|
|
quant_config=quant_config,
|
|
prefix=prefix,
|
|
alt_stream=self.alt_stream,
|
|
),
|
|
pp_rank=self.pp_group.rank_in_group,
|
|
pp_size=self.pp_group.world_size,
|
|
prefix=f"{prefix}.layers",
|
|
)
|
|
|
|
if self.pp_group.is_last_rank:
|
|
self.norm = RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
|
else:
|
|
self.norm = PPMissingLayer()
|
|
|
|
world_size = get_tensor_model_parallel_world_size()
|
|
assert (
|
|
config.num_attention_heads % world_size == 0
|
|
), "num_attention_heads must be divisible by world_size"
|
|
|
|
def forward(
|
|
self,
|
|
input_ids: torch.Tensor | None,
|
|
positions: torch.Tensor,
|
|
forward_batch: ForwardBatch,
|
|
inputs_embeds: torch.Tensor | None = None,
|
|
pp_proxy_tensors: Optional[PPProxyTensors] = None,
|
|
) -> torch.Tensor:
|
|
if get_pp_group().is_first_rank:
|
|
if inputs_embeds is not None:
|
|
hidden_states = inputs_embeds
|
|
else:
|
|
hidden_states = self.embed_tokens(input_ids)
|
|
residual = None
|
|
else:
|
|
assert pp_proxy_tensors is not None
|
|
hidden_states = pp_proxy_tensors["hidden_states"]
|
|
residual = pp_proxy_tensors["residual"]
|
|
|
|
total_num_layers = self.end_layer - self.start_layer
|
|
device = hidden_states.device
|
|
zero_allocator = BumpAllocator(
|
|
buffer_size=total_num_layers * 2,
|
|
dtype=torch.float32,
|
|
device=device,
|
|
)
|
|
# TODO: capture aux hidden states
|
|
aux_hidden_states = []
|
|
for i in range(self.start_layer, self.end_layer):
|
|
ctx = get_global_expert_distribution_recorder().with_current_layer(i)
|
|
with ctx:
|
|
layer = self.layers[i]
|
|
hidden_states, residual = layer(
|
|
positions=positions,
|
|
hidden_states=hidden_states,
|
|
forward_batch=forward_batch,
|
|
residual=residual,
|
|
zero_allocator=zero_allocator,
|
|
)
|
|
|
|
if not self.pp_group.is_last_rank:
|
|
return PPProxyTensors(
|
|
{
|
|
"hidden_states": hidden_states,
|
|
"residual": residual,
|
|
}
|
|
)
|
|
else:
|
|
if hidden_states.shape[0] != 0:
|
|
if residual is None:
|
|
hidden_states = self.norm(hidden_states)
|
|
else:
|
|
hidden_states, _ = self.norm(hidden_states, residual)
|
|
|
|
if len(aux_hidden_states) == 0:
|
|
return hidden_states
|
|
|
|
return hidden_states, aux_hidden_states
|
|
|
|
|
|
class KimiLinearForCausalLM(nn.Module):
|
|
def __init__(
|
|
self,
|
|
config: KimiLinearConfig,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
prefix: str = "",
|
|
) -> None:
|
|
super().__init__()
|
|
self.config = config
|
|
self.quant_config = quant_config
|
|
self.model = KimiLinearModel(
|
|
config, quant_config, prefix=maybe_prefix(prefix, "model")
|
|
)
|
|
self.pp_group = get_pp_group()
|
|
if self.pp_group.is_last_rank:
|
|
self.lm_head = ParallelLMHead(
|
|
self.config.vocab_size,
|
|
self.config.hidden_size,
|
|
quant_config=quant_config,
|
|
prefix=maybe_prefix(prefix, "lm_head"),
|
|
)
|
|
else:
|
|
self.lm_head = PPMissingLayer()
|
|
logit_scale = getattr(self.config, "logit_scale", 1.0)
|
|
self.logits_processor = LogitsProcessor(config=config, logit_scale=logit_scale)
|
|
|
|
def forward(
|
|
self,
|
|
input_ids: torch.Tensor,
|
|
positions: torch.Tensor,
|
|
forward_batch: ForwardBatch,
|
|
inputs_embeds: Optional[torch.Tensor] = None,
|
|
pp_proxy_tensors: Optional[PPProxyTensors] = None,
|
|
) -> torch.Tensor:
|
|
hidden_states = self.model(
|
|
input_ids,
|
|
positions,
|
|
forward_batch,
|
|
inputs_embeds,
|
|
pp_proxy_tensors,
|
|
)
|
|
if self.pp_group.is_last_rank:
|
|
return self.logits_processor(
|
|
input_ids, hidden_states, self.lm_head, forward_batch
|
|
)
|
|
else:
|
|
return hidden_states
|
|
|
|
def load_weights(self, weights: Iterable[tuple[str, torch.Tensor]]):
|
|
stacked_params_mapping = [
|
|
# (param_name, shard_name, shard_id)
|
|
(".gate_up_proj", ".gate_proj", 0),
|
|
(".gate_up_proj", ".up_proj", 1),
|
|
]
|
|
if self.config.is_moe:
|
|
# Params for weights, fp8 weight scales, fp8 activation scales
|
|
# (param_name, weight_name, expert_id, shard_id)
|
|
expert_params_mapping = FusedMoE.make_expert_params_mapping(
|
|
ckpt_gate_proj_name="w1",
|
|
ckpt_down_proj_name="w2",
|
|
ckpt_up_proj_name="w3",
|
|
num_experts=self.config.num_experts,
|
|
)
|
|
else:
|
|
expert_params_mapping = []
|
|
params_dict = dict(self.named_parameters())
|
|
loaded_params: set[str] = set()
|
|
for args in weights:
|
|
name, loaded_weight = args[:2]
|
|
kwargs = args[2] if len(args) > 2 else {}
|
|
if "rotary_emb.inv_freq" in name:
|
|
continue
|
|
|
|
if "rotary_emb.cos_cached" in name or "rotary_emb.sin_cached" in name:
|
|
# Models trained using ColossalAI may include these tensors in
|
|
# the checkpoint. Skip them.
|
|
continue
|
|
for param_name, weight_name, shard_id in stacked_params_mapping:
|
|
if weight_name not in name:
|
|
continue
|
|
# We have mlp.experts[0].gate_proj in the checkpoint.
|
|
# Since we handle the experts below in expert_params_mapping,
|
|
# we need to skip here BEFORE we update the name, otherwise
|
|
# name will be updated to mlp.experts[0].gate_up_proj, which
|
|
# will then be updated below in expert_params_mapping
|
|
# for mlp.experts[0].gate_gate_up_proj, which breaks load.
|
|
if ("mlp.experts." in name) and name not in params_dict:
|
|
continue
|
|
name = name.replace(weight_name, param_name)
|
|
# Skip loading extra bias for GPTQ models.
|
|
if name.endswith(".bias") and name not in params_dict:
|
|
continue
|
|
# if is_pp_missing_parameter(name, self):
|
|
# continue
|
|
param = params_dict[name]
|
|
weight_loader = param.weight_loader
|
|
weight_loader(param, loaded_weight, shard_id)
|
|
break
|
|
else:
|
|
for idx, (param_name, weight_name, expert_id, shard_id) in enumerate(
|
|
expert_params_mapping
|
|
):
|
|
if weight_name not in name:
|
|
continue
|
|
name = name.replace(weight_name, param_name)
|
|
# if is_pp_missing_parameter(name, self):
|
|
# continue
|
|
param = params_dict[name]
|
|
weight_loader = param.weight_loader
|
|
weight_loader(
|
|
param,
|
|
loaded_weight,
|
|
name,
|
|
expert_id=expert_id,
|
|
shard_id=shard_id,
|
|
)
|
|
break
|
|
else:
|
|
# Skip loading extra bias for GPTQ models.
|
|
if (
|
|
name.endswith(".bias")
|
|
and name not in params_dict
|
|
and not self.config.is_linear_attn
|
|
): # noqa: E501
|
|
continue
|
|
# Remapping the name of FP8 kv-scale.
|
|
name = maybe_remap_kv_scale_name(name, params_dict)
|
|
if name is None:
|
|
continue
|
|
# if is_pp_missing_parameter(name, self):
|
|
# continue
|
|
|
|
param = params_dict[name]
|
|
weight_loader = getattr(
|
|
param, "weight_loader", default_weight_loader
|
|
)
|
|
weight_loader(param, loaded_weight, **kwargs)
|
|
loaded_params.add(name)
|
|
|
|
for layer_id in self.config.full_attention_layer_ids:
|
|
self_attn = self.model.layers[layer_id].self_attn
|
|
w_kc, w_vc = self_attn.kv_b_proj.weight.unflatten(
|
|
0, (-1, self_attn.qk_nope_head_dim + self_attn.v_head_dim)
|
|
).split([self_attn.qk_nope_head_dim, self_attn.v_head_dim], dim=1)
|
|
self_attn.w_kc = w_kc.transpose(1, 2).contiguous().transpose(1, 2)
|
|
self_attn.w_vc = w_vc.contiguous().transpose(1, 2)
|
|
if hasattr(self_attn.kv_b_proj, "weight_scale"):
|
|
self_attn.w_scale = self_attn.kv_b_proj.weight_scale
|
|
|
|
|
|
EntryClass = KimiLinearForCausalLM
|