Files
sglang/test/registered/unit/eplb/test_waterfill_eplb.py
T

145 lines
5.3 KiB
Python

"""Unit tests for Waterfill and EPLB updater compatibility."""
from sglang.test.ci.ci_register import register_cpu_ci
register_cpu_ci(est_time=11, suite="base-a-test-cpu")
import unittest
from types import SimpleNamespace
from unittest.mock import patch
import torch
from torch import nn
from sglang.srt.layers.moe import topk as topk_module
from sglang.srt.layers.moe.topk import TopKConfig
from sglang.srt.models.deepseek_v2 import DeepseekV2MoE
from sglang.srt.runtime_context import get_parallel
from sglang.test.test_utils import CustomTestCase
class _FakeExpertParam(nn.Module):
def __init__(self):
super().__init__()
self.num_local_experts = 5
self.weight = nn.Parameter(
torch.arange(10, dtype=torch.float32).reshape(self.num_local_experts, 2)
)
self.correction_bias = nn.Parameter(torch.ones(self.num_local_experts))
self.global_scale = nn.Parameter(torch.ones(self.num_local_experts))
self.global_scale._sglang_require_global_experts = True
class TestWaterfillEPLB(CustomTestCase):
def test_deepseek_moe_get_moe_weights_excludes_fused_shared_slot(self):
experts = _FakeExpertParam()
moe = SimpleNamespace(num_fused_shared_experts=1, experts=experts)
shared_before = experts.weight.data[-1].clone()
weights = DeepseekV2MoE.get_moe_weights(moe)
self.assertEqual(len(weights), 1)
self.assertEqual(
weights[0].shape,
(experts.num_local_experts - moe.num_fused_shared_experts, 2),
)
weights[0][-1].zero_()
self.assertTrue(torch.equal(experts.weight.data[-2], torch.zeros(2)))
self.assertTrue(torch.equal(experts.weight.data[-1], shared_before))
def test_deepseek_moe_get_moe_weights_keeps_full_shape_without_fusion(self):
experts = _FakeExpertParam()
moe = SimpleNamespace(num_fused_shared_experts=0, experts=experts)
weights = DeepseekV2MoE.get_moe_weights(moe)
self.assertEqual(len(weights), 1)
self.assertEqual(weights[0].shape, (experts.num_local_experts, 2))
def test_topk_recorder_ids_exclude_per_rank_fused_shared_slots(self):
topk_ids = torch.tensor([[0, 33, 263, 256]], dtype=torch.int32)
topk_weights = torch.ones_like(topk_ids, dtype=torch.float32)
topk_config = TopKConfig(
top_k=4,
num_fused_shared_experts=1,
routed_scaling_factor=1.0,
)
dispatch_info = SimpleNamespace(
num_physical_experts=264, ep_dispatch_algorithm="static"
)
def fake_eplb_postprocess(
ids, expert_location_dispatch_info, num_token_non_padded
):
return ids
with (
patch.object(topk_module, "_is_cuda", True),
patch.object(topk_module, "_use_aiter", False),
patch.object(
topk_module, "has_per_rank_fused_shared_slots", return_value=True
),
get_parallel().override(moe_ep_size=8, moe_ep_rank=7),
patch.object(
topk_module,
"_biased_grouped_topk_postprocess",
side_effect=fake_eplb_postprocess,
),
):
processed_ids, _, recorder_ids = topk_module._post_process_topk_ids(
topk_ids=topk_ids.clone(),
topk_weights=topk_weights.clone(),
topk_config=topk_config,
router_logits=torch.empty((1, 256)),
layer_id=0,
expert_location_dispatch_info=dispatch_info,
)
self.assertTrue(torch.equal(processed_ids, torch.tensor([[0, 34, 270, 271]])))
self.assertTrue(torch.equal(recorder_ids, torch.tensor([[0, 33, 263]])))
def test_topk_recorder_ids_exclude_global_fused_shared_slot(self):
topk_ids = torch.tensor([[0, 33, 200, 256]], dtype=torch.int32)
topk_weights = torch.ones_like(topk_ids, dtype=torch.float32)
topk_config = TopKConfig(
top_k=4,
num_fused_shared_experts=1,
routed_scaling_factor=1.0,
)
dispatch_info = SimpleNamespace(
num_physical_experts=256, ep_dispatch_algorithm="static"
)
def fake_eplb_postprocess(
ids, expert_location_dispatch_info, num_token_non_padded
):
return ids + 1
with (
patch.object(topk_module, "_is_cuda", True),
patch.object(topk_module, "_use_aiter", False),
patch.object(
topk_module, "has_per_rank_fused_shared_slots", return_value=False
),
patch.object(
topk_module,
"_biased_grouped_topk_postprocess",
side_effect=fake_eplb_postprocess,
),
):
processed_ids, _, recorder_ids = topk_module._post_process_topk_ids(
topk_ids=topk_ids.clone(),
topk_weights=topk_weights.clone(),
topk_config=topk_config,
router_logits=torch.empty((1, 256)),
layer_id=0,
expert_location_dispatch_info=dispatch_info,
)
self.assertTrue(torch.equal(processed_ids, torch.tensor([[1, 34, 201, 256]])))
self.assertTrue(torch.equal(recorder_ids, torch.tensor([[1, 34, 201]])))
if __name__ == "__main__":
unittest.main()