-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
[Minor] Fused experts refactor #15914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
simon-mo
merged 6 commits into
vllm-project:main
from
neuralmagic:fused-experts-refactor
Apr 3, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
"""Fused MoE kernel.""" | ||
from typing import Optional | ||
|
||
import torch | ||
|
||
from vllm import _custom_ops as ops | ||
|
||
|
||
#TODO make the grouped gemm kernel consistent with scaled gemm kernel | ||
def cutlass_moe_fp8( | ||
a: torch.Tensor, | ||
w1_q: torch.Tensor, | ||
w2_q: torch.Tensor, | ||
w1_scale: torch.Tensor, | ||
w2_scale: torch.Tensor, | ||
topk_weights: torch.Tensor, | ||
topk_ids: torch.Tensor, | ||
ab_strides1: torch.Tensor, | ||
c_strides1: torch.Tensor, | ||
ab_strides2: torch.Tensor, | ||
c_strides2: torch.Tensor, | ||
a1_scale: Optional[torch.Tensor] = None, | ||
a2_scale: Optional[torch.Tensor] = None, | ||
out_dtype: torch.dtype = torch.half, | ||
) -> torch.Tensor: | ||
""" | ||
This function computes a a8w8-quantized Mixture of Experts (MoE) layer | ||
using two sets of quantized weights, w1_q and w2_q, and top-k gating | ||
mechanism. The matrix multiplications are implemented with CUTLASS | ||
grouped gemm. | ||
|
||
Parameters: | ||
- a (torch.Tensor): The input tensor to the MoE layer. | ||
Shape: [M, K] | ||
- w1_q (torch.Tensor): The first set of fp8-quantized expert weights. | ||
Shape: [num_experts, K, 2N] (the weights are passed transposed) | ||
- w2_q (torch.Tensor): The second set of fp8-quantized expert weights. | ||
Shape: [num_experts, N, K] (the weights are passed transposed) | ||
- w1_scale (torch.Tensor): The fp32 scale to dequantize w1_q. | ||
Shape: [num_experts] or [num_experts, 2N] | ||
- w2_scale (torch.Tensor): The fp32 scale to dequantize w2_q. | ||
Shape: [num_experts] or [num_experts, K] | ||
- gating_output (torch.Tensor): The output of the gating operation | ||
(before softmax). | ||
- topk_weights (torch.Tensor): The weights of each token->expert mapping. | ||
- ab_strides1 (torch.Tensor): The input and weights strides of the first | ||
grouped gemm. | ||
- c_strides1 (torch.Tensor): The output strides of the first grouped gemm. | ||
- ab_strides2 (torch.Tensor): The input and weights strides of the second | ||
grouped gemm. | ||
- c_strides2 (torch.Tensor): The output strides of the second grouped gemm. | ||
- a1_scale (Optional[torch.Tensor]): The optional fp32 scale to quantize a. | ||
Shape: scalar or [M] | ||
- a2_scale (Optional[torch.Tensor]): The optional fp32 scale to | ||
quantize the intermediate result between the gemms. | ||
Shape: scalar or [M] | ||
- out_dtype (torch.Tensor): The output tensor type. | ||
|
||
Returns: | ||
- torch.Tensor: The fp16 output tensor after applying the MoE layer. | ||
""" | ||
|
||
assert topk_weights.shape == topk_ids.shape, "topk shape mismatch" | ||
assert w1_q.dtype == torch.float8_e4m3fn | ||
assert w2_q.dtype == torch.float8_e4m3fn | ||
assert a.shape[1] == w1_q.shape[1], "Hidden size mismatch w1" | ||
assert w1_q.shape[2] == w2_q.shape[1] * 2, "Hidden size mismatch w2" | ||
assert w1_q.shape[0] == w2_q.shape[0], "Expert number mismatch" | ||
assert a1_scale is None or a1_scale.dim( | ||
) == 0 or a1_scale.shape[0] == 1 or a1_scale.shape[0] == a.shape[ | ||
0], "Input scale shape mismatch" | ||
assert w1_scale.dim() == 1 or w1_scale.shape[1] == 1 or w1_scale.shape[ | ||
1] == w1_q.shape[2], "W1 scale shape mismatch" | ||
assert w2_scale.dim() == 1 or w2_scale.shape[1] == 1 or w2_scale.shape[ | ||
1] == w2_q.shape[2], "W2 scale shape mismatch" | ||
assert w1_q.shape[0] == w2_q.shape[0], "Weights expert number mismatch" | ||
assert w1_q.shape[0] == w1_scale.shape[ | ||
0], "w1 scales expert number mismatch" | ||
assert w1_q.shape[0] == w2_scale.shape[ | ||
0], "w2 scales expert number mismatch" | ||
assert a2_scale is None or a1_scale is None or a2_scale.shape == a1_scale.shape, "Intermediate scale shape mismatch" # noqa: E501 | ||
assert ab_strides1.shape[0] == w1_q.shape[ | ||
0], "AB Strides 1 expert number mismatch" | ||
assert c_strides1.shape[0] == w1_q.shape[ | ||
0], "C Strides 1 expert number mismatch" | ||
assert ab_strides2.shape[0] == w2_q.shape[ | ||
0], "AB Strides 2 expert number mismatch" | ||
assert c_strides2.shape[0] == w2_q.shape[ | ||
0], "C Strides 2 expert number mismatch" | ||
assert out_dtype in [torch.half, torch.bfloat16], "Invalid output dtype" | ||
|
||
num_experts = w1_q.size(0) | ||
m = a.size(0) | ||
k = w1_q.size(1) | ||
n = w2_q.size(1) | ||
|
||
topk = topk_ids.size(1) | ||
per_act_token = a1_scale.numel() != 1 if a1_scale is not None else ( | ||
a2_scale.numel() != 1 if a2_scale is not None else False) | ||
|
||
a_q, a1_scale = ops.scaled_fp8_quant( | ||
a, a1_scale, use_per_token_if_dynamic=per_act_token) | ||
device = a_q.device | ||
|
||
expert_offsets = torch.empty((num_experts + 1), | ||
dtype=torch.int32, | ||
device=device) | ||
problem_sizes1 = torch.empty((num_experts, 3), | ||
dtype=torch.int32, | ||
device=device) | ||
problem_sizes2 = torch.empty((num_experts, 3), | ||
dtype=torch.int32, | ||
device=device) | ||
|
||
a_map = torch.empty((topk_ids.numel()), dtype=torch.int32, device=device) | ||
c_map = torch.empty((topk_ids.numel()), dtype=torch.int32, device=device) | ||
|
||
ops.get_cutlass_moe_mm_data(topk_ids, expert_offsets, problem_sizes1, | ||
problem_sizes2, a_map, c_map, num_experts, n, | ||
k) | ||
|
||
rep_a_q = a_q.view(dtype=torch.uint8)[a_map].view(dtype=a_q.dtype) | ||
rep_a1_scales = a1_scale[a_map] if per_act_token else a1_scale | ||
|
||
c1 = torch.empty((m * topk, n * 2), device=device, dtype=out_dtype) | ||
c2 = torch.empty((m * topk, k), device=device, dtype=out_dtype) | ||
|
||
ops.cutlass_moe_mm(c1, rep_a_q, w1_q, rep_a1_scales, w1_scale, | ||
expert_offsets[:-1], problem_sizes1, ab_strides1, | ||
ab_strides1, c_strides1) | ||
|
||
intermediate = torch.empty((m * topk, n), device=device, dtype=out_dtype) | ||
torch.ops._C.silu_and_mul(intermediate, c1) | ||
|
||
intemediate_q, a2_scale = ops.scaled_fp8_quant( | ||
intermediate, a2_scale, use_per_token_if_dynamic=per_act_token) | ||
|
||
ops.cutlass_moe_mm(c2, intemediate_q, w2_q, a2_scale, w2_scale, | ||
expert_offsets[:-1], problem_sizes2, ab_strides2, | ||
ab_strides2, c_strides2) | ||
|
||
return (c2[c_map].view(m, topk, k) * | ||
topk_weights.view(m, topk, 1).to(out_dtype)).sum(dim=1) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.