From 5c02217746331c9a29351c31eb53d8f1360771be Mon Sep 17 00:00:00 2001 From: Shu Wang Date: Mon, 19 Jan 2026 03:45:27 -0600 Subject: [PATCH] Inclusion of nvfp4 blockscale in EPLB Rebalance (#17158) --- python/sglang/srt/layers/moe/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/sglang/srt/layers/moe/utils.py b/python/sglang/srt/layers/moe/utils.py index 4249fad5a..41c7cfdae 100644 --- a/python/sglang/srt/layers/moe/utils.py +++ b/python/sglang/srt/layers/moe/utils.py @@ -255,7 +255,6 @@ def filter_moe_weight_param_global_expert(name, x, num_local_experts): """ return ( not getattr(x, "_sglang_require_global_experts", False) - and not name.endswith("_blockscale_swizzled") and x.data.ndim > 0 and x.data.shape[0] == num_local_experts )