"vllm/model_executor/layers/attention.py" did not exist on "aa50b17ca776f8c69a793787d0ce06dfa4671884"
test_flashinfer_moe.py 5.38 KB
Newer Older
1
2
3
4
5
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import pytest
import torch

6
from tests.kernels.moe.utils import make_test_quant_config
7
8
9
10
11
from tests.kernels.quantization.nvfp4_utils import (
    FLOAT4_E2M1_MAX,
    FLOAT8_E4M3_MAX,
    dequantize_nvfp4_to_dtype,
)
12
13
14
from tests.kernels.utils import torch_moe
from vllm import _custom_ops as ops
from vllm.config import ParallelConfig, VllmConfig, set_current_vllm_config
15
from vllm.model_executor.layers.fused_moe import fused_topk
16
from vllm.model_executor.layers.fused_moe.activation import MoEActivation
17
18
19
20
21
from vllm.model_executor.layers.fused_moe.config import (
    FusedMoEConfig,
    FusedMoEParallelConfig,
    RoutingMethodType,
)
22
from vllm.model_executor.layers.fused_moe.flashinfer_cutlass_moe import (
23
24
25
26
    FlashInferExperts,
    is_valid_flashinfer_cutlass_fused_moe,
)
from vllm.model_executor.layers.fused_moe.modular_kernel import FusedMoEModularKernel
27
28
29
from vllm.model_executor.layers.fused_moe.prepare_finalize import (
    MoEPrepareAndFinalizeNoEP,
)
30
31
from vllm.platforms import current_platform
from vllm.utils.flashinfer import has_flashinfer_cutlass_fused_moe
32
from vllm.utils.torch_utils import set_random_seed
33

34
35
36
37
38
39
40
if not has_flashinfer_cutlass_fused_moe() or not current_platform.has_device_capability(
    100
):
    pytest.skip(
        "Requires flashinfer_cutlass_fused_moe and nvfp4 support",
        allow_module_level=True,
    )
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

MNK_FACTORS = [
    (2, 1024, 1024),
    (2, 3072, 1024),
    (2, 3072, 1536),
    (64, 1024, 1536),
    (64, 3072, 1024),
    (64, 2048, 1536),
    (224, 1024, 1024),
    (224, 1024, 1536),
]


@pytest.mark.parametrize("m,n,k", MNK_FACTORS)
@pytest.mark.parametrize("e", [40, 64, 256])
@pytest.mark.parametrize("topk", [1, 6, 8])
57
@pytest.mark.parametrize("dtype", [torch.bfloat16])
58
@pytest.mark.parametrize("activation", [MoEActivation.SILU, MoEActivation.RELU2_NO_MUL])
59
@torch.inference_mode()
60
def test_flashinfer_fp4_moe_no_graph(
61
62
63
64
65
66
    m: int,
    n: int,
    k: int,
    e: int,
    topk: int,
    dtype: torch.dtype,
67
    activation: MoEActivation,
68
    workspace_init,
69
):
70
    set_random_seed(7)
71
    with set_current_vllm_config(
72
73
        VllmConfig(parallel_config=ParallelConfig(pipeline_parallel_size=1))
    ):
74
75
76
        a = torch.randn((m, k), device="cuda", dtype=dtype) / 10

        quant_blocksize = 16
77
        is_gated_act = activation.is_gated
78

79
80
81
82
83
84
85
86
        w1_q, w2_q, quant_config = make_test_quant_config(
            e,
            n,
            k,
            in_dtype=dtype,
            quant_dtype="nvfp4",
            block_shape=None,
            per_act_token_quant=False,
87
            make_gate=is_gated_act,
88
        )
89
90

        score = torch.randn((m, e), device="cuda", dtype=dtype)
91
        topk_weights, topk_ids, _ = fused_topk(a, score, topk, renormalize=False)
92
93
94

        assert is_valid_flashinfer_cutlass_fused_moe(a, w1_q, w2_q)

95
96
97
98
99
100
        moe_config = FusedMoEConfig(
            num_experts=e,
            experts_per_token=topk,
            hidden_dim=k,
            intermediate_size_per_partition=n,
            num_local_experts=e,
101
            num_logical_experts=e,
102
103
104
105
106
107
108
109
            activation=activation,
            device="cuda",
            moe_parallel_config=FusedMoEParallelConfig.make_no_parallel(),
            in_dtype=dtype,
            is_act_and_mul=is_gated_act,
            routing_method=RoutingMethodType.TopK,
        )

110
        flashinfer_experts = FusedMoEModularKernel(
111
            MoEPrepareAndFinalizeNoEP(),
112
            FlashInferExperts(moe_config=moe_config, quant_config=quant_config),
113
            inplace=False,
114
        )
115
116
117
118
119
120
121

        flashinfer_output = flashinfer_experts(
            hidden_states=a,
            w1=w1_q,
            w2=w2_q,
            topk_weights=topk_weights,
            topk_ids=topk_ids,
122
            activation=activation,
123
124
125
        )

        # Reference check:
126
127
128
        a_global_scale = (
            (FLOAT8_E4M3_MAX * FLOAT4_E2M1_MAX) / torch.amax(a.flatten(), dim=-1)
        ).to(torch.float32)
129
130
        a_fp4, a_scale_interleaved = ops.scaled_fp4_quant(a, a_global_scale)
        _, m_k = a_fp4.shape
131
132
133
134
135
136
137
138
        a_in_dtype = dequantize_nvfp4_to_dtype(
            a_fp4,
            a_scale_interleaved,
            a_global_scale,
            dtype=a.dtype,
            device=a.device,
            block_size=quant_blocksize,
        )
139

140
141
142
        w1_d = torch.empty(
            (e, (2 if is_gated_act else 1) * n, k), device="cuda", dtype=dtype
        )
143
144
145
        w2_d = torch.empty((e, k, n), device="cuda", dtype=dtype)

        for idx in range(0, e):
146
147
            w1_d[idx] = dequantize_nvfp4_to_dtype(
                w1_q[idx],
148
149
                quant_config.w1_scale[idx],
                (1 / quant_config.g1_alphas[idx]),
150
151
                dtype=dtype,
                device=w1_q.device,
152
153
                block_size=quant_blocksize,
            )
154
155
            w2_d[idx] = dequantize_nvfp4_to_dtype(
                w2_q[idx],
156
157
                quant_config.w2_scale[idx],
                (1 / quant_config.g2_alphas[idx]),
158
159
                dtype=dtype,
                device=w2_q.device,
160
161
                block_size=quant_blocksize,
            )
162

163
164
165
        torch_output = torch_moe(
            a_in_dtype, w1_d, w2_d, score, topk, activation=activation
        )
166

167
168
169
        torch.testing.assert_close(
            torch_output, flashinfer_output, atol=1e-1, rtol=1e-1
        )
170
171
172
173


if __name__ == "__main__":
    test_flashinfer_fp4_moe_no_graph((2, 1024, 1024), 40, 1, torch.half)