59a0a3844c
PR Test AMD / cancel-on-close (push) Has been skipped
PR Test NVIDIA ARM / scan (push) Has been skipped
PR Test NVIDIA / cancel-on-close (push) Has been skipped
PR Test AMD / scan (push) Has been skipped
PR Test NVIDIA ARM / cancel-on-close (push) Has been skipped
PR Test NVIDIA / scan (push) Has been skipped
Release Docker Images / build (cu129-torch-2.11.0) (push) Has been skipped
Release Docker Images / build (cu130-torch-2.11.0) (push) Has been skipped
Release PyPI / publish (push) Has been skipped
Scheduler Python Test / test (push) Successful in 27m19s
Docs / build (push) Successful in 28m8s
Scheduler C++ Test / test (push) Successful in 28m19s
Scheduler C++ Test / test-flat (push) Successful in 28m18s
Docs / deploy (push) Has been cancelled
PR Test AMD / finish (push) Has been cancelled
PR Test NVIDIA / finish (push) Has been cancelled
PR Test NVIDIA ARM / finish (push) Has been cancelled
PR Test NVIDIA ARM / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test AMD / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test NVIDIA / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
420 lines
15 KiB
Python
420 lines
15 KiB
Python
# Copyright (c) 2026 LightSeek Foundation
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from collections.abc import Iterable
|
|
from dataclasses import replace
|
|
|
|
import torch
|
|
from tokenspeed_kernel.ops.activation.triton import sigmoid_mul
|
|
from torch import nn
|
|
from transformers import PretrainedConfig
|
|
|
|
from tokenspeed.runtime.distributed.mapping import Mapping
|
|
from tokenspeed.runtime.execution.context import (
|
|
ForwardContext,
|
|
report_collective_sizing,
|
|
)
|
|
from tokenspeed.runtime.execution.forward_batch_info import ForwardMode
|
|
from tokenspeed.runtime.layers.layernorm import GemmaRMSNorm
|
|
from tokenspeed.runtime.layers.linear import ReplicatedLinear
|
|
from tokenspeed.runtime.layers.logits_processor import LogitsMetadata, LogitsProcessor
|
|
from tokenspeed.runtime.layers.moe import (
|
|
ExpertCheckpointSchema,
|
|
build_moe_checkpoint_loader,
|
|
)
|
|
from tokenspeed.runtime.layers.vocab_parallel_embedding import ParallelLMHead
|
|
from tokenspeed.runtime.model_loader.weight_utils import default_weight_loader
|
|
from tokenspeed.runtime.models.qwen3_5 import (
|
|
Qwen3_5AttentionDecoderLayer,
|
|
Qwen3_5ForCausalLM,
|
|
)
|
|
from tokenspeed.runtime.utils import add_prefix
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Qwen3_5DraftAttentionDecoderLayer(Qwen3_5AttentionDecoderLayer):
|
|
"""NextN draft variant: skip dead catch-up rows on the first draft step.
|
|
|
|
On the first draft step the backend runs in DECODE mode with ``q`` sliced
|
|
to ``bs`` while ``self.attn`` still writes the full ``N`` rope-d KV rows
|
|
from the just-drafted tokens. Multi-step decode delegates to base.
|
|
|
|
MIXED catch-up requires a backend that populates a decode-slot metadata
|
|
under EXTEND/MIXED at draft init (e.g. trtllm-mha); MHA-family backends
|
|
that assert ``not is_mixed()`` at metadata init are not supported.
|
|
"""
|
|
|
|
def _attn(
|
|
self,
|
|
q: torch.Tensor,
|
|
k: torch.Tensor,
|
|
v: torch.Tensor,
|
|
gate: torch.Tensor | None,
|
|
ctx: ForwardContext,
|
|
out_cache_loc: torch.Tensor,
|
|
) -> torch.Tensor:
|
|
if ctx.accept_lengths is None:
|
|
return super()._attn(q, k, v, gate, ctx, out_cache_loc)
|
|
|
|
self._apply_correction(ctx)
|
|
q = q.index_select(0, ctx.gather_ids)
|
|
if gate is not None:
|
|
gate = gate.index_select(0, ctx.gather_ids)
|
|
# Dispatch as DECODE over the sliced live rows via self.attn (see the
|
|
# class docstring), which keeps the standard k/v reshape and KV write.
|
|
# A ctx copy overrides only the forward mode; record_kv_cache (keyed off
|
|
# the real mode) forces the backend's PD layerwise cache-step record that
|
|
# DECODE would otherwise skip on an EXTEND/MIXED catch-up.
|
|
decode_ctx = replace(ctx, forward_mode=ForwardMode.DECODE)
|
|
attn_output = self.attn(
|
|
q,
|
|
k,
|
|
v,
|
|
decode_ctx,
|
|
out_cache_loc,
|
|
record_kv_cache=not ctx.forward_mode.is_decode_or_idle(),
|
|
)
|
|
if gate is not None:
|
|
sigmoid_mul(attn_output, gate)
|
|
return attn_output
|
|
|
|
def _apply_correction(self, ctx: ForwardContext) -> None:
|
|
"""Trim decode rows' cache_seqlens by ``spec_num_tokens - accept_lengths``."""
|
|
seq_lens_buf = ctx.draft_seq_lens_buf
|
|
if seq_lens_buf is None or ctx.accept_lengths is None:
|
|
return
|
|
num_extends = ctx.num_extends
|
|
if num_extends >= ctx.bs:
|
|
return
|
|
correction = (
|
|
ctx.attn_backend.spec_num_tokens - ctx.accept_lengths[num_extends:]
|
|
).to(seq_lens_buf.dtype)
|
|
seq_lens_buf[num_extends : ctx.bs].sub_(correction).clamp_(min=1)
|
|
|
|
def _maybe_narrow_residual(
|
|
self,
|
|
residual: torch.Tensor,
|
|
ctx: ForwardContext,
|
|
) -> torch.Tensor:
|
|
if ctx.accept_lengths is None or ctx.forward_mode.is_idle():
|
|
return residual
|
|
return residual.index_select(0, ctx.gather_ids)
|
|
|
|
|
|
class Qwen3_5DraftForCausalLM(Qwen3_5ForCausalLM):
|
|
"""Causal LM with the draft-variant attention layer injected.
|
|
|
|
Restricted to single-layer drafts: ``_apply_correction`` mutates
|
|
``ctx.draft_seq_lens_buf`` in place and is not idempotent across layers.
|
|
A multi-layer draft would double-trim cache_seqlens. Lift the correction
|
|
out of the per-layer hook (e.g. into the drafter) before relaxing this.
|
|
"""
|
|
|
|
ATTENTION_LAYER_CLS: type = Qwen3_5DraftAttentionDecoderLayer
|
|
|
|
def __init__(
|
|
self,
|
|
config,
|
|
mapping,
|
|
quant_config=None,
|
|
prefix: str = "",
|
|
) -> None:
|
|
if config.num_hidden_layers != 1:
|
|
raise ValueError(
|
|
"Qwen3_5DraftForCausalLM requires num_hidden_layers == 1 "
|
|
f"(got {config.num_hidden_layers}); _apply_correction is not "
|
|
"idempotent across layers."
|
|
)
|
|
super().__init__(config, mapping, quant_config=quant_config, prefix=prefix)
|
|
|
|
|
|
class Qwen3_5ForConditionalGenerationNextN(nn.Module):
|
|
def __init__(
|
|
self,
|
|
config: PretrainedConfig,
|
|
mapping: Mapping,
|
|
quant_config=None,
|
|
prefix: str = "",
|
|
) -> None:
|
|
nn.Module.__init__(self)
|
|
|
|
self.is_multimodal = hasattr(config, "text_config")
|
|
if self.is_multimodal:
|
|
config = config.text_config
|
|
|
|
# The MTP model is unquantized in the nvfp4 checkpoint.
|
|
if quant_config and quant_config.get_name() == "nvfp4":
|
|
quant_config = None
|
|
|
|
self.config = config
|
|
self.mapping = mapping
|
|
self.quant_config = quant_config
|
|
|
|
self.fc = nn.Linear(2 * config.hidden_size, config.hidden_size, bias=False)
|
|
RMSNorm_cls = GemmaRMSNorm
|
|
self.pre_fc_norm_embedding = RMSNorm_cls(
|
|
config.hidden_size, config.rms_norm_eps
|
|
)
|
|
self.pre_fc_norm_hidden = RMSNorm_cls(config.hidden_size, config.rms_norm_eps)
|
|
config.num_hidden_layers = 1
|
|
config.full_attention_interval = 1
|
|
self.model = Qwen3_5DraftForCausalLM(
|
|
config,
|
|
mapping=self.mapping,
|
|
quant_config=quant_config,
|
|
prefix=add_prefix("mtp", prefix),
|
|
)
|
|
|
|
if config.tie_word_embeddings:
|
|
self.lm_head = self.model.embed_tokens
|
|
else:
|
|
if self.mapping.attn.has_dp:
|
|
self.lm_head = ReplicatedLinear(
|
|
config.hidden_size,
|
|
config.vocab_size,
|
|
bias=False,
|
|
prefix=add_prefix("lm_head", prefix),
|
|
)
|
|
else:
|
|
self.lm_head = ParallelLMHead(
|
|
config.vocab_size,
|
|
config.hidden_size,
|
|
quant_config=quant_config,
|
|
tp_rank=self.mapping.attn.tp_rank,
|
|
tp_size=self.mapping.attn.tp_size,
|
|
tp_group=self.mapping.attn.tp_group,
|
|
prefix=add_prefix("lm_head", prefix),
|
|
)
|
|
|
|
self.logits_processor = LogitsProcessor(
|
|
config,
|
|
skip_all_gather=self.mapping.attn.has_dp,
|
|
tp_rank=self.mapping.attn.tp_rank,
|
|
tp_size=self.mapping.attn.tp_size,
|
|
tp_group=self.mapping.attn.tp_group,
|
|
)
|
|
|
|
def get_hot_token_id(self):
|
|
return None
|
|
|
|
def get_embed_and_head(self):
|
|
return self.model.embed_tokens.weight, self.lm_head.weight
|
|
|
|
def set_embed_and_head(self, embed, head):
|
|
del self.model.embed_tokens.weight
|
|
if not self.config.tie_word_embeddings:
|
|
del self.lm_head.weight
|
|
|
|
self.model.embed_tokens.weight = embed
|
|
self.lm_head.weight = head
|
|
torch.cuda.empty_cache()
|
|
torch.cuda.synchronize()
|
|
|
|
@torch.no_grad()
|
|
def forward(
|
|
self,
|
|
ctx: ForwardContext,
|
|
input_ids: torch.Tensor,
|
|
positions: torch.Tensor,
|
|
out_cache_loc: torch.Tensor,
|
|
input_embeds: torch.Tensor | None = None,
|
|
captured_hidden_states: torch.Tensor | None = None,
|
|
**kwargs,
|
|
):
|
|
if captured_hidden_states is None and not ctx.forward_mode.is_idle():
|
|
raise ValueError("Qwen3.5 MTP requires captured_hidden_states.")
|
|
|
|
if ctx.forward_mode.is_idle():
|
|
# IDLE forward: skip MTP-specific ops, just run the inner model
|
|
# for NCCL collective participation.
|
|
hidden_states = torch.zeros(
|
|
0,
|
|
self.config.hidden_size * 2,
|
|
device=input_ids.device,
|
|
dtype=self.model.embed_tokens.weight.dtype,
|
|
)
|
|
else:
|
|
if input_embeds is not None:
|
|
raise ValueError("input_embeds is not supported for nextn forward.")
|
|
input_embeds = self.model.embed_tokens(input_ids)
|
|
hidden_states = captured_hidden_states
|
|
input_embeds = self.pre_fc_norm_embedding(input_embeds)
|
|
hidden_states = self.pre_fc_norm_hidden(hidden_states)
|
|
hidden_states = torch.cat([input_embeds, hidden_states], dim=-1)
|
|
|
|
hidden_states = self.fc(hidden_states)
|
|
|
|
with report_collective_sizing(ctx, ctx.bs, ctx.global_bs):
|
|
hidden_states, _ = self.model(
|
|
input_ids,
|
|
positions,
|
|
ctx,
|
|
out_cache_loc,
|
|
input_embeds=hidden_states,
|
|
)
|
|
|
|
logits_metadata = LogitsMetadata.from_forward_context(ctx)
|
|
return self.logits_processor(
|
|
input_ids, hidden_states, self.lm_head, logits_metadata
|
|
)
|
|
|
|
def load_weights(
|
|
self, weights: Iterable[tuple[str, torch.Tensor]], is_mtp: bool = False
|
|
):
|
|
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),
|
|
]
|
|
|
|
num_experts = getattr(self.config, "num_experts", None)
|
|
|
|
# Skip loading extra parameters for GPTQ/nvfp4 models.
|
|
ignore_suffixes = (
|
|
".bias",
|
|
"_bias",
|
|
".k_scale",
|
|
"_k_scale",
|
|
".v_scale",
|
|
"_v_scale",
|
|
".weight_scale",
|
|
"_weight_scale",
|
|
".input_scale",
|
|
"_input_scale",
|
|
)
|
|
params_dict = dict(self.named_parameters(remove_duplicate=False))
|
|
moe_loader = None
|
|
if num_experts is not None:
|
|
# MoE expert weights, scales, and activation scales are handled
|
|
# by the checkpoint loader.
|
|
moe_loader = build_moe_checkpoint_loader(
|
|
params_dict=params_dict,
|
|
expert_schema=ExpertCheckpointSchema(
|
|
gate_proj_name="gate_proj",
|
|
down_proj_name="down_proj",
|
|
up_proj_name="up_proj",
|
|
),
|
|
fused_schema=ExpertCheckpointSchema(
|
|
gate_up_fused_name="gate_up_proj",
|
|
down_proj_name="down_proj",
|
|
),
|
|
num_experts=num_experts,
|
|
ep_rank=self.mapping.moe.ep_rank,
|
|
ep_size=self.mapping.moe.ep_size,
|
|
)
|
|
loaded_params: set[str] = set()
|
|
|
|
for name, loaded_weight in weights:
|
|
if "rotary_emb.inv_freq" in name:
|
|
continue
|
|
|
|
# Only process MTP branch weights
|
|
if "mtp" not in name:
|
|
continue
|
|
|
|
if name.startswith("mtp."):
|
|
# Remove the mtp. prefix for processing
|
|
name = name.replace("mtp.", "model.")
|
|
|
|
name = name.replace("model.fc", "fc")
|
|
name = name.replace("model.pre_fc", "pre_fc")
|
|
|
|
if ".self_attn." in name:
|
|
name = name.replace(".self_attn", "")
|
|
|
|
# 1) Process stacked parameters (q_proj/k_proj/v_proj & gate_proj/up_proj)
|
|
for param_name, weight_name, shard_id in stacked_params_mapping:
|
|
# Skip non-matching weights
|
|
if weight_name not in name:
|
|
continue
|
|
|
|
# Skip MoE experts.* here, handled separately below
|
|
if "mlp.experts" in name:
|
|
continue
|
|
|
|
name_mapped = name.replace(weight_name, param_name)
|
|
|
|
# Skip loading extra parameters for GPTQ/nvfp4 models.
|
|
if (
|
|
name_mapped.endswith(ignore_suffixes)
|
|
and name_mapped not in params_dict
|
|
):
|
|
continue
|
|
|
|
if name_mapped not in params_dict:
|
|
continue
|
|
|
|
param = params_dict[name_mapped]
|
|
weight_loader = getattr(param, "weight_loader", default_weight_loader)
|
|
weight_loader(param, loaded_weight, shard_id)
|
|
name = name_mapped
|
|
break
|
|
else:
|
|
# Skip loading extra bias for GPTQ models.
|
|
if name.endswith((".bias", "_bias")) and name not in params_dict:
|
|
continue
|
|
if moe_loader is not None:
|
|
if moe_loader.matches(name):
|
|
mapped_name = moe_loader.load(name, loaded_weight)
|
|
loaded_params.add(mapped_name)
|
|
continue
|
|
if moe_loader.is_expert_checkpoint_weight(name):
|
|
continue
|
|
|
|
# Skip loading extra parameters for GPTQ/nvfp4 models.
|
|
if name.endswith(ignore_suffixes) and name not in params_dict:
|
|
continue
|
|
|
|
if name not in params_dict:
|
|
logger.warning("MTP weight not in params_dict: %s", name)
|
|
continue
|
|
param = params_dict[name]
|
|
weight_loader = getattr(param, "weight_loader", default_weight_loader)
|
|
weight_loader(param, loaded_weight)
|
|
|
|
loaded_params.add(name)
|
|
return loaded_params
|
|
|
|
|
|
class Qwen3_5MoeForConditionalGenerationNextN(Qwen3_5ForConditionalGenerationNextN):
|
|
def __init__(
|
|
self,
|
|
config: PretrainedConfig,
|
|
mapping: Mapping,
|
|
quant_config=None,
|
|
prefix: str = "",
|
|
) -> None:
|
|
super().__init__(
|
|
config=config, mapping=mapping, quant_config=quant_config, prefix=prefix
|
|
)
|
|
|
|
|
|
EntryClass = [
|
|
Qwen3_5ForConditionalGenerationNextN,
|
|
Qwen3_5MoeForConditionalGenerationNextN,
|
|
]
|