Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
c9e8613c
Unverified
Commit
c9e8613c
authored
Jul 21, 2025
by
Ke Bao
Committed by
GitHub
Jul 21, 2025
Browse files
Apply fused sorted token ids padding (#8193)
parent
429bb0ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
python/sglang/srt/layers/moe/fused_moe_triton/fused_moe.py
python/sglang/srt/layers/moe/fused_moe_triton/fused_moe.py
+7
-2
No files found.
python/sglang/srt/layers/moe/fused_moe_triton/fused_moe.py
View file @
c9e8613c
...
@@ -752,14 +752,13 @@ def moe_align_block_size(
...
@@ -752,14 +752,13 @@ def moe_align_block_size(
sorted_ids
=
torch
.
empty
(
sorted_ids
=
torch
.
empty
(
(
max_num_tokens_padded
,),
dtype
=
torch
.
int32
,
device
=
topk_ids
.
device
(
max_num_tokens_padded
,),
dtype
=
torch
.
int32
,
device
=
topk_ids
.
device
)
)
sorted_ids
.
fill_
(
topk_ids
.
numel
())
max_num_m_blocks
=
triton
.
cdiv
(
max_num_tokens_padded
,
block_size
)
max_num_m_blocks
=
triton
.
cdiv
(
max_num_tokens_padded
,
block_size
)
expert_ids
=
torch
.
empty
(
expert_ids
=
torch
.
empty
(
(
max_num_m_blocks
,),
dtype
=
torch
.
int32
,
device
=
topk_ids
.
device
(
max_num_m_blocks
,),
dtype
=
torch
.
int32
,
device
=
topk_ids
.
device
)
)
num_tokens_post_pad
=
torch
.
empty
((
1
),
dtype
=
torch
.
int32
,
device
=
topk_ids
.
device
)
num_tokens_post_pad
=
torch
.
empty
((
1
),
dtype
=
torch
.
int32
,
device
=
topk_ids
.
device
)
if
enable_moe_align_block_size_triton
:
if
enable_moe_align_block_size_triton
:
sorted_ids
.
fill_
(
topk_ids
.
numel
())
moe_align_block_size_triton
(
moe_align_block_size_triton
(
topk_ids
,
topk_ids
,
num_experts
,
num_experts
,
...
@@ -778,6 +777,11 @@ def moe_align_block_size(
...
@@ -778,6 +777,11 @@ def moe_align_block_size(
device
=
topk_ids
.
device
,
device
=
topk_ids
.
device
,
)
)
# Threshold based on benchmark results
fuse_sorted_ids_padding
=
sorted_ids
.
shape
[
0
]
<=
4096
if
not
fuse_sorted_ids_padding
:
sorted_ids
.
fill_
(
topk_ids
.
numel
())
sgl_moe_align_block_size
(
sgl_moe_align_block_size
(
topk_ids
,
topk_ids
,
num_experts
,
num_experts
,
...
@@ -787,6 +791,7 @@ def moe_align_block_size(
...
@@ -787,6 +791,7 @@ def moe_align_block_size(
num_tokens_post_pad
,
num_tokens_post_pad
,
token_cnts_buffer
,
token_cnts_buffer
,
cumsum_buffer
,
cumsum_buffer
,
fuse_sorted_ids_padding
,
)
)
return
sorted_ids
,
expert_ids
,
num_tokens_post_pad
return
sorted_ids
,
expert_ids
,
num_tokens_post_pad
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment