Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
711823c
feat: support Hy4-preview
JustinTong0323 Aug 28, 2026
57fc356
fix(hy4): Hy4-dialect structure_info and native required tool_choice
JustinTong0323 Aug 28, 2026
a1cf83f
fix(moe): keep clamped/swizzled MoE activations off unservable masked…
JustinTong0323 Aug 28, 2026
5726e72
fix(hy4): read enable_dp_lm_head off the live parallel context
JustinTong0323 Aug 28, 2026
c0fe120
fix(hy4): read dcp_size defensively in the HYV4 CP guardrail
JustinTong0323 Aug 28, 2026
281e4ed
Merge remote-tracking branch 'upstream/main' into xinyuan/hy4-preview…
JustinTong0323 Aug 28, 2026
406267c
feat(hy4): integrate fused hpc iHC pipeline
JustinTong0323 Aug 28, 2026
1c99bc6
feat(hy4): qualify gated MLA attention TP shards
JustinTong0323 Aug 28, 2026
cd32c1c
test(hy4): pin default HPC dispatch guards
JustinTong0323 Aug 28, 2026
5927554
Merge upstream main into Hy4 preview support
JustinTong0323 Aug 29, 2026
23b5447
Merge latest upstream main into Hy4 preview support
JustinTong0323 Aug 29, 2026
c01ee69
Merge latest upstream main into Hy4 preview support
JustinTong0323 Aug 29, 2026
55fdd15
chore(hy4): clean up review noise
JustinTong0323 Aug 29, 2026
d917207
fix: preserve composed Hunyuan tool schemas
JustinTong0323 Aug 29, 2026
b3129ed
test: gate MXFP8 MoE layout by device support
JustinTong0323 Aug 29, 2026
08f00d4
Merge remote-tracking branch 'upstream/main' into review/pr36805-cleanup
JustinTong0323 Aug 29, 2026
06fb214
Fix DSA sink padding cache refresh
JustinTong0323 Sep 1, 2026
ff8a3ce
Disable failing fused Hy4 iHC paths
JustinTong0323 Sep 1, 2026
00fb247
Unify nested ModelOpt quant config parsing
JustinTong0323 Sep 1, 2026
35b0f10
Reject unowned MLA attention gates
JustinTong0323 Sep 1, 2026
12f05e0
Merge upstream/main into hy4 preview support
JustinTong0323 Sep 2, 2026
998cae9
Update Hy4 override tests for split registry
JustinTong0323 Sep 2, 2026
93c2027
Move Hunyuan reasoning normalization out of serving
JustinTong0323 Sep 2, 2026
8bb92ee
Prune redundant Hy4 unit tests
JustinTong0323 Sep 2, 2026
9b4c776
Merge remote-tracking branch 'upstream/main' into review/pr36805-cleanup
JustinTong0323 Sep 3, 2026
a627684
Merge remote-tracking branch 'upstream/main' into review/pr36805-cleanup
JustinTong0323 Sep 4, 2026
664356b
upd
Fridge003 Sep 4, 2026
6de7b3c
Merge branch 'main' into xinyuan/hy4-preview-support
Fridge003 Sep 4, 2026
1506019
test: use split CP compatibility symbol in canonical interleave test
JustinTong0323 Sep 4, 2026
9fff6b4
style: ruff format model_hook.py
JustinTong0323 Sep 4, 2026
95e071b
Merge remote-tracking branch 'upstream/main' into HEAD
JustinTong0323 Sep 4, 2026
4950b24
Merge branch 'main' into xinyuan/hy4-preview-support
JustinTong0323 Sep 4, 2026
0aecbe4
test: follow upstream SM100 platform accessor in MXFP8 gate
JustinTong0323 Sep 4, 2026
e756d5d
Merge remote-tracking branch 'origin/main' into xinyuan/hy4-preview-s…
Fridge003 Sep 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions python/sglang/kernels/ops/layernorm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,8 @@ def gemma_fused_add_rmsnorm(
("gemma4_fused_ops", "gemma4_fused_routing", "triton"),
("gemma4_fused_ops", "gemma_qkv_rmsnorm", "triton"),
("mhc_head", "fused_hc_head", "triton"),
("hy4_ihc", "fused_hy4_ihc_pre", "triton"),
("hy4_ihc", "fused_hy4_ihc_post", "triton"),
]
for _mod, _fn, _bk in _PHASE25_KERNELS:
register_kernel(
Expand Down
Loading
Loading