Skip to content
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DeepEPLLPrepareAndFinalize(mk.FusedMoEPrepareAndFinalize):

# DeepEP low-latency kernels are compiled only for certain
# specific hidden sizes.
SUPPORTED_HIDDEN_SIZES = [2048, 2560, 4096, 5120, 7168]
SUPPORTED_HIDDEN_SIZES = [2048, 2560, 4096, 5120, 6144, 7168]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Adding 6144 to SUPPORTED_HIDDEN_SIZES enables this new configuration, but the pull request lacks corresponding tests to validate its functionality. The existing tests for low-latency DeepEP kernels in tests/kernels/moe/test_deepep_moe.py do not cover this new hidden size.

To ensure the correctness of the implementation for this new hidden size and to prevent future regressions, please add a test case for k=6144 to test_low_latency_deep_ep_moe. This will verify that the pre-compiled kernel for this size works as expected.


def __init__(self,
buffer: deep_ep.Buffer,
Expand Down