# Copyright © 2026 Apple Inc. # # Tencent Hunyuan 3 (hy_v3). Base model support follows the community work in # ml-explore/mlx-lm#1211 (kernelpool); this file additionally *keeps and uses* # the Multi-Token-Prediction (MTP) layer for self-speculative decoding instead # of stripping it. from dataclasses import dataclass from typing import Any, Dict, Optional import mlx.core as mx import mlx.nn as nn from mlx.nn.layers.distributed import shard_inplace, shard_linear, sum_gradients from .activations import swiglu from .base import BaseModelArgs, create_attention_mask, scaled_dot_product_attention from .cache import KVCache from .pipeline import PipelineMixin from .rope_utils import initialize_rope from .switch_layers import SwitchGLU @dataclass class ModelArgs(BaseModelArgs): model_type: str vocab_size: int hidden_size: int intermediate_size: int num_hidden_layers: int num_attention_heads: int num_key_value_heads: int head_dim: int num_experts: int num_experts_per_tok: int num_shared_experts: int expert_hidden_dim: int first_k_dense_replace: int rms_norm_eps: float rope_parameters: Dict[str, Any] router_scaling_factor: float = 1.0 qk_norm: bool = True route_norm: bool = True moe_router_use_sigmoid: bool = True moe_router_enable_expert_bias: bool = True tie_word_embeddings: bool = False num_nextn_predict_layers: int = 0 max_position_embeddings: int = 262144 enable_moe_fp32_combine: bool = False enable_lm_head_fp32: bool = False class Attention(nn.Module): def __init__(self, args: ModelArgs): super().__init__() dim = args.hidden_size self.n_heads = args.num_attention_heads self.n_kv_heads = args.num_key_value_heads self.head_dim = args.head_dim self.scale = self.head_dim**-0.5 self.q_proj = nn.Linear(dim, self.n_heads * self.head_dim, bias=False) self.k_proj = nn.Linear(dim, self.n_kv_heads * self.head_dim, bias=False) self.v_proj = nn.Linear(dim, self.n_kv_heads * self.head_dim, bias=False) self.o_proj = nn.Linear(self.n_heads * self.head_dim, dim, bias=False) self.use_qk_norm = args.qk_norm if self.use_qk_norm: self.q_norm = nn.RMSNorm(self.head_dim, eps=args.rms_norm_eps) self.k_norm = nn.RMSNorm(self.head_dim, eps=args.rms_norm_eps) self.rope = initialize_rope( dims=self.head_dim, base=args.rope_parameters["rope_theta"], traditional=False, scaling_config=args.rope_parameters, max_position_embeddings=args.max_position_embeddings, ) def __call__( self, x: mx.array, mask: Optional[mx.array] = None, cache: Optional[Any] = None, ) -> mx.array: B, L, _ = x.shape queries = self.q_proj(x).reshape(B, L, self.n_heads, self.head_dim) keys = self.k_proj(x).reshape(B, L, self.n_kv_heads, self.head_dim) values = self.v_proj(x).reshape(B, L, self.n_kv_heads, self.head_dim) if self.use_qk_norm: queries = self.q_norm(queries) keys = self.k_norm(keys) queries = queries.transpose(0, 2, 1, 3) keys = keys.transpose(0, 2, 1, 3) values = values.transpose(0, 2, 1, 3) offset = cache.offset if cache is not None else 0 queries = self.rope(queries, offset=offset) keys = self.rope(keys, offset=offset) if cache is not None: keys, values = cache.update_and_fetch(keys, values) output = scaled_dot_product_attention( queries, keys, values, cache=cache, scale=self.scale, mask=mask ) output = output.transpose(0, 2, 1, 3).reshape(B, L, -1) return self.o_proj(output) class MLP(nn.Module): def __init__(self, hidden_size: int, intermediate_size: int): super().__init__() self.gate_proj = nn.Linear(hidden_size, intermediate_size, bias=False) self.up_proj = nn.Linear(hidden_size, intermediate_size, bias=False) self.down_proj = nn.Linear(intermediate_size, hidden_size, bias=False) def __call__(self, x): return self.down_proj(swiglu(self.gate_proj(x), self.up_proj(x))) @mx.compile def expert_select( gates, expert_bias, top_k, routed_scaling_factor, norm_topk_prob, ): scores = mx.sigmoid(gates.astype(mx.float32)) orig_scores = scores scores = scores + expert_bias inds = mx.argpartition(scores, kth=-top_k, axis=-1)[..., -top_k:] scores = mx.take_along_axis(orig_scores, inds, axis=-1) if top_k > 1 and norm_topk_prob: scores = scores / (scores.sum(axis=-1, keepdims=True) + 1e-20) scores = scores * routed_scaling_factor return inds, scores class MoEGate(nn.Module): def __init__(self, args: ModelArgs): super().__init__() self.top_k = args.num_experts_per_tok self.norm_topk_prob = args.route_norm self.routed_scaling_factor = args.router_scaling_factor self.gate = nn.Linear(args.hidden_size, args.num_experts, bias=False) self.expert_bias = mx.zeros((args.num_experts,)) def __call__(self, x): return expert_select( self.gate(x), self.expert_bias, self.top_k, self.routed_scaling_factor, self.norm_topk_prob, ) class MoE(nn.Module): def __init__(self, args: ModelArgs): super().__init__() self.num_experts_per_tok = args.num_experts_per_tok self.switch_mlp = SwitchGLU( args.hidden_size, args.expert_hidden_dim, args.num_experts, ) self.router = MoEGate(args) if args.num_shared_experts > 0: self.shared_mlp = MLP( args.hidden_size, args.expert_hidden_dim * args.num_shared_experts, ) else: self.shared_mlp = None self.fp32_combine = args.enable_moe_fp32_combine self.sharding_group = None def __call__(self, x): if self.sharding_group is not None: x = sum_gradients(self.sharding_group)(x) inds, scores = self.router(x) if not self.fp32_combine: scores = scores.astype(x.dtype) y = self.switch_mlp(x, inds) y = (y * scores[..., None]).sum(axis=-2) if self.shared_mlp is not None: y = y + self.shared_mlp(x) if self.sharding_group is not None: y = mx.distributed.all_sum(y, group=self.sharding_group) return y.astype(x.dtype) class DecoderLayer(nn.Module): def __init__(self, args: ModelArgs, layer_idx: int): super().__init__() self.self_attn = Attention(args) if layer_idx < args.first_k_dense_replace: self.mlp = MLP(args.hidden_size, args.intermediate_size) else: self.mlp = MoE(args) self.input_layernorm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps) self.post_attention_layernorm = nn.RMSNorm( args.hidden_size, eps=args.rms_norm_eps ) def __call__( self, x: mx.array, mask: Optional[mx.array] = None, cache: Optional[Any] = None, ) -> mx.array: r = self.self_attn(self.input_layernorm(x), mask, cache) h = x + r r = self.mlp(self.post_attention_layernorm(h)) return h + r class MTPBlock(nn.Module): """Hy3 Multi-Token-Prediction block (the layer after the main stack). Projects concat[norm(next-token embedding), norm(hidden state)] through ``eh_proj`` and one full decoder layer to produce the hidden state for the speculatively-drafted next token. """ def __init__(self, args: ModelArgs): super().__init__() self.enorm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps) self.hnorm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps) self.eh_proj = nn.Linear(args.hidden_size * 2, args.hidden_size, bias=False) self.layer = DecoderLayer(args, layer_idx=args.num_hidden_layers) self.final_layernorm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps) def __call__( self, h_N: mx.array, e_N1: mx.array, mask: Optional[mx.array] = None, cache: Optional[Any] = None, ) -> mx.array: # Order matters: [normed embedding, normed hidden state]. x = mx.concatenate([self.enorm(e_N1), self.hnorm(h_N)], axis=-1) y = self.layer(self.eh_proj(x), mask, cache) return self.final_layernorm(y) class HYV3Model(PipelineMixin, nn.Module): def __init__(self, args: ModelArgs): super().__init__() self.vocab_size = args.vocab_size self.embed_tokens = nn.Embedding(args.vocab_size, args.hidden_size) self.layers = [DecoderLayer(args, idx) for idx in range(args.num_hidden_layers)] self.norm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps) def __call__( self, x: mx.array, cache: Optional[Any] = None, return_hidden_states: bool = False, ) -> mx.array: h = self.embed_tokens(x) pipeline_rank = self.pipeline_rank pipeline_size = self.pipeline_size if cache is None: cache = [None] * len(self.pipeline_layers) mask = create_attention_mask(h, cache[0]) if pipeline_rank < pipeline_size - 1: h = mx.distributed.recv_like(h, (pipeline_rank + 1)) for layer, c in zip(self.pipeline_layers, cache): h = layer(h, mask, cache=c) if pipeline_rank != 0: h = mx.distributed.send(h, (pipeline_rank - 1) % pipeline_size) if cache[-1] is not None: cache[-1].keys = mx.depends(cache[-1].keys, h) if pipeline_size > 1: h = mx.distributed.all_gather(h)[: h.shape[0]] out = self.norm(h) if return_hidden_states: return out, h return out class Model(nn.Module): def __init__(self, args: ModelArgs): super().__init__() self.args = args self.model_type = args.model_type self.model = HYV3Model(args) if not args.tie_word_embeddings: self.lm_head = nn.Linear(args.hidden_size, args.vocab_size, bias=False) self.num_nextn_predict_layers = getattr(args, "num_nextn_predict_layers", 0) if self.num_nextn_predict_layers > 0: self.mtp = MTPBlock(args) def _logits(self, out): if self.args.enable_lm_head_fp32: out = out.astype(mx.float32) if self.args.tie_word_embeddings: return self.model.embed_tokens.as_linear(out) return self.lm_head(out) def __call__( self, inputs: mx.array, cache: Optional[Any] = None, return_hidden_states: bool = False, ): if return_hidden_states: out, h = self.model(inputs, cache, return_hidden_states=True) return self._logits(out), h out = self.model(inputs, cache) return self._logits(out) def predict_next_tokens(self, h_N: mx.array, token_ids: mx.array, cache=None): """Run the MTP head to draft the next token from a hidden state.""" if not hasattr(self, "mtp"): raise ValueError("MTP is not enabled or its weights are not loaded.") e_N1 = self.model.embed_tokens(token_ids) mask = create_attention_mask(e_N1, cache) h_mtp = self.mtp(h_N, e_N1, mask, cache) return self._logits(h_mtp) @property def layers(self): return self.model.layers def make_cache(self): return [KVCache() for _ in self.layers] def sanitize(self, weights): n_layers = self.args.num_hidden_layers n_mtp = self.args.num_nextn_predict_layers # Keep the MTP layer (the base model drops it). If the checkpoint stores # it under model.layers.{n_layers}.*, remap it onto the mtp.* submodule; # if it is already stored under mtp.*, leave it as-is. if n_mtp > 0: mtp_src = f"model.layers.{n_layers}." for k in list(weights.keys()): if k.startswith(mtp_src): rest = k[len(mtp_src):] if any( t in rest for t in ("enorm", "hnorm", "eh_proj", "final_layernorm") ): weights["mtp." + rest] = weights.pop(k) else: weights["mtp.layer." + rest] = weights.pop(k) def fix_moe(prefix): bias_key = f"{prefix}.mlp.expert_bias" if bias_key in weights: weights[f"{prefix}.mlp.router.expert_bias"] = weights.pop(bias_key) for m in ("gate_proj", "down_proj", "up_proj"): for k in ("weight", "scales", "biases"): per_expert = f"{prefix}.mlp.experts.0.{m}.{k}" stacked = f"{prefix}.mlp.experts.{m}.{k}" if per_expert in weights: to_join = [ weights.pop(f"{prefix}.mlp.experts.{e}.{m}.{k}") for e in range(self.args.num_experts) ] weights[f"{prefix}.mlp.switch_mlp.{m}.{k}"] = mx.stack(to_join) elif stacked in weights: # Already stacked (MLX-converted checkpoint): just rename. weights[f"{prefix}.mlp.switch_mlp.{m}.{k}"] = weights.pop( stacked ) for l in range(n_layers): fix_moe(f"model.layers.{l}") if n_mtp > 0: fix_moe("mtp.layer") if self.args.tie_word_embeddings: weights.pop("lm_head.weight", None) return weights def shard(self, group: Optional[mx.distributed.Group] = None): group = group or mx.distributed.init() N = group.size() for layer in self.model.layers: layer.self_attn.q_proj = shard_linear( layer.self_attn.q_proj, "all-to-sharded", group=group ) layer.self_attn.k_proj = shard_linear( layer.self_attn.k_proj, "all-to-sharded", group=group ) layer.self_attn.v_proj = shard_linear( layer.self_attn.v_proj, "all-to-sharded", group=group ) layer.self_attn.o_proj = shard_linear( layer.self_attn.o_proj, "sharded-to-all", group=group ) layer.self_attn.n_heads //= N layer.self_attn.n_kv_heads = max(1, layer.self_attn.n_kv_heads // N) if isinstance(layer.mlp, MLP): layer.mlp.gate_proj = shard_linear( layer.mlp.gate_proj, "all-to-sharded", group=group ) layer.mlp.down_proj = shard_linear( layer.mlp.down_proj, "sharded-to-all", group=group ) layer.mlp.up_proj = shard_linear( layer.mlp.up_proj, "all-to-sharded", group=group ) else: layer.mlp.sharding_group = group if layer.mlp.shared_mlp is not None: shard_inplace( layer.mlp.shared_mlp.gate_proj, "all-to-sharded", group=group ) shard_inplace( layer.mlp.shared_mlp.down_proj, "sharded-to-all", group=group ) shard_inplace( layer.mlp.shared_mlp.up_proj, "all-to-sharded", group=group ) shard_inplace( layer.mlp.switch_mlp.gate_proj, "all-to-sharded", group=group ) shard_inplace( layer.mlp.switch_mlp.down_proj, "sharded-to-all", group=group ) shard_inplace( layer.mlp.switch_mlp.up_proj, "all-to-sharded", group=group ) @property def layers(self): return self.model.pipeline_layers @property def quant_predicate(self): def predicate(path, _): if path.endswith("mlp.router.gate"): return {"group_size": 64, "bits": 8} return True return predicate @property def cast_predicate(self): def predicate(k): return "expert_bias" not in k return predicate