utils.py 15.6 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
bnellnm's avatar
bnellnm committed
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
4
5

import torch

bnellnm's avatar
bnellnm committed
6
import vllm._custom_ops as ops
7
from tests.kernels.quant_utils import per_block_cast_to_int8
8
from tests.kernels.quantization.nvfp4_utils import FLOAT4_E2M1_MAX, FLOAT8_E4M3_MAX
9
from vllm.model_executor.layers.activation import SiluAndMul
10
11
from vllm.model_executor.layers.fused_moe import fused_experts, fused_topk
from vllm.model_executor.layers.fused_moe.config import FusedMoEQuantConfig
bnellnm's avatar
bnellnm committed
12
from vllm.model_executor.layers.fused_moe.fused_batched_moe import (
13
14
15
16
17
18
    BatchedPrepareAndFinalize,
    BatchedTritonExperts,
    NaiveBatchedExperts,
)
from vllm.model_executor.layers.fused_moe.modular_kernel import FusedMoEModularKernel
from vllm.model_executor.layers.fused_moe.utils import moe_kernel_quantize_input
bnellnm's avatar
bnellnm committed
19
from vllm.utils import round_up
20
from vllm.utils.deep_gemm import per_block_cast_to_fp8
bnellnm's avatar
bnellnm committed
21
22
23
24
25
26
27
28


def triton_moe(
    a: torch.Tensor,
    w1: torch.Tensor,
    w2: torch.Tensor,
    topk_weight: torch.Tensor,
    topk_ids: torch.Tensor,
29
30
31
32
33
    w1_scale: torch.Tensor | None = None,
    w2_scale: torch.Tensor | None = None,
    a1_scale: torch.Tensor | None = None,
    a2_scale: torch.Tensor | None = None,
    quant_dtype: torch.dtype | None = None,
bnellnm's avatar
bnellnm committed
34
    per_act_token_quant=False,
35
    block_shape: list[int] | None = None,
bnellnm's avatar
bnellnm committed
36
) -> torch.Tensor:
37
38
39
40
41
42
43
44
45
46
    quant_config = FusedMoEQuantConfig.make(
        quant_dtype,
        per_act_token_quant=per_act_token_quant,
        block_shape=block_shape,
        w1_scale=w1_scale,
        w2_scale=w2_scale,
        a1_scale=a1_scale,
        a2_scale=a2_scale,
    )

47
    return fused_experts(a, w1, w2, topk_weight, topk_ids, quant_config=quant_config)
bnellnm's avatar
bnellnm committed
48
49
50
51
52
53
54
55


def batched_moe(
    a: torch.Tensor,
    w1: torch.Tensor,
    w2: torch.Tensor,
    topk_weight: torch.Tensor,
    topk_ids: torch.Tensor,
56
57
58
59
60
    w1_scale: torch.Tensor | None = None,
    w2_scale: torch.Tensor | None = None,
    a1_scale: torch.Tensor | None = None,
    a2_scale: torch.Tensor | None = None,
    quant_dtype: torch.dtype | None = None,
bnellnm's avatar
bnellnm committed
61
    per_act_token_quant: bool = False,
62
    block_shape: list[int] | None = None,
bnellnm's avatar
bnellnm committed
63
64
65
) -> torch.Tensor:
    max_num_tokens = round_up(a.shape[0], 64)

66
67
68
69
70
71
72
73
74
75
    quant_config = FusedMoEQuantConfig.make(
        quant_dtype,
        per_act_token_quant=per_act_token_quant,
        block_shape=block_shape,
        w1_scale=w1_scale,
        w2_scale=w2_scale,
        a1_scale=a1_scale,
        a2_scale=a2_scale,
    )

bnellnm's avatar
bnellnm committed
76
    fused_experts = FusedMoEModularKernel(
77
78
79
        BatchedPrepareAndFinalize(
            max_num_tokens, num_dispatchers=1, num_local_experts=w1.shape[0], rank=0
        ),
bnellnm's avatar
bnellnm committed
80
81
        BatchedTritonExperts(
            max_num_tokens=max_num_tokens,
82
            num_dispatchers=1,
83
            quant_config=quant_config,
bnellnm's avatar
bnellnm committed
84
        ),
85
86
    )

87
    return fused_experts(a, w1, w2, topk_weight, topk_ids)
bnellnm's avatar
bnellnm committed
88
89
90
91
92
93
94
95


def naive_batched_moe(
    a: torch.Tensor,
    w1: torch.Tensor,
    w2: torch.Tensor,
    topk_weight: torch.Tensor,
    topk_ids: torch.Tensor,
96
97
98
99
100
    w1_scale: torch.Tensor | None = None,
    w2_scale: torch.Tensor | None = None,
    a1_scale: torch.Tensor | None = None,
    a2_scale: torch.Tensor | None = None,
    quant_dtype: torch.dtype | None = None,
bnellnm's avatar
bnellnm committed
101
    per_act_token_quant: bool = False,
102
    block_shape: list[int] | None = None,
bnellnm's avatar
bnellnm committed
103
104
105
) -> torch.Tensor:
    max_num_tokens = round_up(a.shape[0], 64)

106
107
108
109
110
111
112
113
114
115
    quant_config = FusedMoEQuantConfig.make(
        quant_dtype,
        per_act_token_quant=per_act_token_quant,
        block_shape=block_shape,
        w1_scale=w1_scale,
        w2_scale=w2_scale,
        a1_scale=a1_scale,
        a2_scale=a2_scale,
    )

bnellnm's avatar
bnellnm committed
116
    fused_experts = FusedMoEModularKernel(
117
118
119
        BatchedPrepareAndFinalize(
            max_num_tokens, num_dispatchers=1, num_local_experts=w1.shape[0], rank=0
        ),
bnellnm's avatar
bnellnm committed
120
121
        NaiveBatchedExperts(
            max_num_tokens=max_num_tokens,
122
            num_dispatchers=1,
123
            quant_config=quant_config,
bnellnm's avatar
bnellnm committed
124
125
        ),
    )
126

127
    return fused_experts(a, w1, w2, topk_weight, topk_ids)
bnellnm's avatar
bnellnm committed
128
129


130
def chunk_scales(
131
132
    scales: torch.Tensor | None, start: int, end: int
) -> torch.Tensor | None:
bnellnm's avatar
bnellnm committed
133
134
135
136
137
138
139
140
141
142
143
144
145
    if scales is not None:
        if scales.numel() == 1:
            return scales
        else:
            return scales[start:end]
    return None


def make_quantized_test_activations(
    E: int,
    m: int,
    k: int,
    in_dtype: torch.dtype,
146
147
    quant_dtype: torch.dtype | None = None,
    block_shape: list[int] | None = None,
bnellnm's avatar
bnellnm committed
148
    per_act_token_quant: bool = False,
149
) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor | None]:
bnellnm's avatar
bnellnm committed
150
151
152
153
154
    a = torch.randn((E, m, k), device="cuda", dtype=in_dtype) / 10
    a_q = a
    a_scale = None

    if quant_dtype is not None:
155
156
157
        assert quant_dtype == torch.float8_e4m3fn or quant_dtype == torch.int8, (
            "only fp8/int8 supported"
        )
bnellnm's avatar
bnellnm committed
158
159
160
161
        a_q = torch.zeros_like(a, dtype=quant_dtype)
        a_scale_l = [None] * E
        for e in range(E):
            a_q[e], a_scale_l[e] = moe_kernel_quantize_input(
162
163
                a[e], None, quant_dtype, per_act_token_quant, block_shape
            )
bnellnm's avatar
bnellnm committed
164
165
166
167
168
169
170
171
172
173
        a_scale = torch.stack(a_scale_l)

        if not per_act_token_quant and block_shape is None:
            a_scale = a_scale.view(E, 1, 1)

    return a, a_q, a_scale


def moe_quantize_weights(
    w: torch.Tensor,
174
175
    w_s: torch.Tensor | None,
    quant_dtype: torch.dtype | str | None,
bnellnm's avatar
bnellnm committed
176
    per_token_quant: bool,
177
178
    block_shape: list[int] | None,
) -> tuple[torch.Tensor, torch.Tensor | None, torch.Tensor | None]:
179
180
181
182
183
    assert (
        quant_dtype == torch.float8_e4m3fn
        or quant_dtype == torch.int8
        or quant_dtype == "nvfp4"
    ), "only fp8/int8/nvfp4 supported"
184
185

    w_gs = None
bnellnm's avatar
bnellnm committed
186
187
188
189
190

    if block_shape is not None:
        assert not per_token_quant
        if quant_dtype == torch.int8:
            w, w_s = per_block_cast_to_int8(w, block_shape)
191
        elif quant_dtype == torch.float8_e4m3fn:
bnellnm's avatar
bnellnm committed
192
            w, w_s = per_block_cast_to_fp8(w, block_shape)
193
194
195
196
        elif quant_dtype == "nvfp4":
            raise RuntimeError("blocked quantization not supported for nvfp4")
        else:
            raise RuntimeError(f"Unsupported quant type {quant_dtype}")
bnellnm's avatar
bnellnm committed
197
198
199
    else:
        if quant_dtype == torch.int8:
            w, w_s = ops.scaled_int8_quant(
200
201
                w, w_s, use_per_token_if_dynamic=per_token_quant
            )
202
        elif quant_dtype == torch.float8_e4m3fn:
bnellnm's avatar
bnellnm committed
203
            w, w_s = ops.scaled_fp8_quant(
204
205
                w, w_s, use_per_token_if_dynamic=per_token_quant
            )
206
207
208
209
210
211
212
        elif quant_dtype == "nvfp4":
            assert not per_token_quant
            w_amax = torch.abs(w).max().to(torch.float32)
            w_gs = FLOAT8_E4M3_MAX * FLOAT4_E2M1_MAX / w_amax
            w, w_s = ops.scaled_fp4_quant(w, w_gs)
        else:
            raise RuntimeError(f"Unsupported quant type {quant_dtype}")
bnellnm's avatar
bnellnm committed
213

214
    return w, w_s, w_gs
bnellnm's avatar
bnellnm committed
215
216
217
218
219
220
221


def make_test_weight(
    e: int,
    rows: int,
    cols: int,
    in_dtype: torch.dtype = torch.bfloat16,
222
223
    quant_dtype: torch.dtype | str | None = None,
    block_shape: list[int] | None = None,
224
    per_out_ch_quant: bool = False,
225
) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor | None, torch.Tensor | None]:
bnellnm's avatar
bnellnm committed
226
    w_16 = torch.randn((e, rows, cols), device="cuda", dtype=in_dtype) / 15
227
    w_gs = None
bnellnm's avatar
bnellnm committed
228
229
230
231

    if quant_dtype is not None:
        w_l = [None] * e
        w_s_l = [None] * e
232
        w_gs_l = [None] * e
bnellnm's avatar
bnellnm committed
233
        for idx in range(e):
234
            w_l[idx], w_s_l[idx], w_gs_l[idx] = moe_quantize_weights(
235
236
                w_16[idx], None, quant_dtype, per_out_ch_quant, block_shape
            )
bnellnm's avatar
bnellnm committed
237
238
239

        w = torch.stack(w_l)
        w_s = torch.stack(w_s_l)
240
241
        if e > 0 and w_gs_l[0] is not None:
            w_gs = torch.stack(w_gs_l)
bnellnm's avatar
bnellnm committed
242
243
244
245
246
247
248
249
250
251
252
253
        if w_s.ndim == 2:
            assert w_s.shape[-1] == 1
            w_s = w_s.view(-1, 1, 1)

        if block_shape is not None:
            block_n, block_k = block_shape
            n_tiles = (rows + block_n - 1) // block_n
            k_tiles = (cols + block_k - 1) // block_k
            assert w_s.shape == (e, n_tiles, k_tiles)
    else:
        w = w_16
        w_s = None
254
        w_gs = None
bnellnm's avatar
bnellnm committed
255

256
    return w_16, w, w_s, w_gs
bnellnm's avatar
bnellnm committed
257
258
259
260
261
262
263


def make_test_weights(
    e: int,
    n: int,
    k: int,
    in_dtype: torch.dtype = torch.bfloat16,
264
265
    quant_dtype: torch.dtype | str | None = None,
    block_shape: list[int] | None = None,
266
    per_out_ch_quant: bool = False,
267
) -> tuple[
268
269
    tuple[torch.Tensor, torch.Tensor, torch.Tensor | None, torch.Tensor | None],
    tuple[torch.Tensor, torch.Tensor, torch.Tensor | None, torch.Tensor | None],
270
]:
bnellnm's avatar
bnellnm committed
271
    return (
272
273
274
275
        make_test_weight(
            e, 2 * n, k, in_dtype, quant_dtype, block_shape, per_out_ch_quant
        ),
        make_test_weight(e, k, n, in_dtype, quant_dtype, block_shape, per_out_ch_quant),
bnellnm's avatar
bnellnm committed
276
    )
277
278
279


def per_token_cast_to_fp8(
280
281
    x: torch.Tensor, block_size: int = 128
) -> tuple[torch.Tensor, torch.Tensor]:
282
283
284
    assert x.dim() == 2
    m, n = x.shape
    pad_size = (block_size - (n % block_size)) % block_size
285
    x = torch.nn.functional.pad(x, (0, pad_size), value=0) if pad_size > 0 else x
286
287
288
289
    x_view = x.view(m, -1, block_size)
    x_amax = x_view.abs().float().amax(dim=2).view(m, -1).clamp(1e-4)
    fp8_data = (x_view * (448.0 / x_amax.unsqueeze(2))).to(torch.float8_e4m3fn)
    return fp8_data.view(m, n + pad_size)[:, :n], (x_amax / 448.0).view(m, -1)
290
291


292
293
294
295
296
def make_test_quant_config(
    e: int,
    n: int,
    k: int,
    in_dtype: torch.dtype,
297
    quant_dtype: torch.dtype | str | None = None,
298
    per_act_token_quant: bool = False,
299
    block_shape: list[int] | None = None,
300
301
302
303
304
305
306
307
308
309
310
311
) -> tuple[torch.Tensor, torch.Tensor, FusedMoEQuantConfig]:
    (_, w1, w1_s, w1_gs), (_, w2, w2_s, w2_gs) = make_test_weights(
        e,
        n,
        k,
        in_dtype,
        quant_dtype,
        per_out_ch_quant=per_act_token_quant,
        block_shape=block_shape,
    )

    # Hacky/trivial scales for nvfp4.
312
313
    a1_gscale: torch.Tensor | None = None
    a2_gscale: torch.Tensor | None = None
314
    if quant_dtype == "nvfp4":
315
316
        a1_gscale = torch.ones((e,), device="cuda", dtype=torch.float32)
        a2_gscale = torch.ones((e,), device="cuda", dtype=torch.float32)
317
318
319
320
321
322
        a1_scale = a1_gscale
        a2_scale = a2_gscale
    else:
        a1_scale = None
        a2_scale = None

323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
    return (
        w1,
        w2,
        FusedMoEQuantConfig.make(
            quant_dtype,
            per_act_token_quant=per_act_token_quant,
            block_shape=block_shape,
            w1_scale=w1_s,
            w2_scale=w2_s,
            a1_gscale=a1_gscale,
            a2_gscale=a2_gscale,
            a1_scale=a1_scale,
            a2_scale=a2_scale,
            # TODO: make sure this is handled properly
            g1_alphas=(1 / w1_gs) if w1_gs is not None else None,
            g2_alphas=(1 / w2_gs) if w2_gs is not None else None,
        ),
340
341
342
343
344
345
346
347
348
349
    )


def fused_moe(
    hidden_states: torch.Tensor,
    w1: torch.Tensor,
    w2: torch.Tensor,
    score: torch.Tensor,
    topk: int,
    renormalize: bool = False,
350
    quant_config: FusedMoEQuantConfig | None = None,
351
    global_num_experts: int = -1,
352
    expert_map: torch.Tensor | None = None,
353
) -> torch.Tensor:
354
355
356
357
358
359
360
361
362
363
364
365
366
    topk_weights, topk_ids, _ = fused_topk(
        hidden_states, score.float(), topk, renormalize
    )
    return fused_experts(
        hidden_states,
        w1,
        w2,
        topk_weights,
        topk_ids,
        global_num_experts=global_num_experts,
        expert_map=expert_map,
        quant_config=quant_config,
    )
367
368


369
370
371
372
373
374
375
376
377
378
379
# CustomOp?
class BaselineMM(torch.nn.Module):
    def __init__(
        self,
        b: torch.Tensor,
        out_dtype: torch.dtype,
    ):
        super().__init__()
        self.b = b.to(dtype=torch.float32)
        self.out_dtype = out_dtype

380
    def forward(self, a: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor | None]:
381
        return torch.mm(a.to(dtype=torch.float32), self.b).to(self.out_dtype), None
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423


class TestMLP(torch.nn.Module):
    def __init__(
        self,
        w1: torch.Tensor,
        w2: torch.Tensor,
        out_dtype: torch.dtype,
    ):
        super().__init__()
        self.gate_up_proj = BaselineMM(w1, out_dtype)
        self.down_proj = BaselineMM(w2, out_dtype)
        self.act_fn = SiluAndMul()

    def forward(self, x):
        x, _ = self.gate_up_proj(x)
        x = self.act_fn(x)
        x, _ = self.down_proj(x)
        return x


def make_naive_shared_experts(
    N: int,
    K: int,
    in_dtype: torch.dtype = torch.bfloat16,
) -> torch.nn.Module:
    w1 = torch.randn((K, N * 2), device="cuda", dtype=in_dtype) / 15
    w2 = torch.randn((N, K), device="cuda", dtype=in_dtype) / 15
    return TestMLP(w1, w2, out_dtype=in_dtype)


class RealMLP(torch.nn.Module):
    def __init__(
        self,
        hidden_size: int,
        intermediate_size: int,
        w1: torch.Tensor,
        w2: torch.Tensor,
        hidden_act: str = "silu",
        quant_config=None,
        reduce_results: bool = True,
        prefix: str = "",
424
425
        w1_s: torch.Tensor | None = None,
        w2_s: torch.Tensor | None = None,
426
427
    ) -> None:
        from vllm.model_executor.layers.linear import (
428
429
430
            MergedColumnParallelLinear,
            RowParallelLinear,
        )
431
432
433

        super().__init__()
        self.gate_up_proj = MergedColumnParallelLinear(
434
435
            hidden_size,
            [intermediate_size] * 2,
436
437
            bias=False,
            quant_config=quant_config,
438
439
            prefix=f"{prefix}.gate_up_proj",
        )
440
        self.gate_up_proj.register_parameter(
441
442
            "weight", torch.nn.Parameter(w1, requires_grad=False)
        )
443
        self.gate_up_proj.register_parameter(
444
445
            "weight_scale", torch.nn.Parameter(w1_s, requires_grad=False)
        )
446
        self.gate_up_proj.register_parameter(
447
448
449
450
451
452
453
454
455
456
            "input_scale", None
        )  # torch.nn.Parameter(None, requires_grad=False))
        self.down_proj = RowParallelLinear(
            intermediate_size,
            hidden_size,
            bias=False,
            quant_config=quant_config,
            reduce_results=reduce_results,
            prefix=f"{prefix}.down_proj",
        )
457
        self.down_proj.register_parameter(
458
459
            "weight", torch.nn.Parameter(w2, requires_grad=False)
        )
460
        self.down_proj.register_parameter(
461
462
            "weight_scale", torch.nn.Parameter(w2_s, requires_grad=False)
        )
463
        self.down_proj.register_parameter(
464
465
            "input_scale", None
        )  # torch.nn.Parameter(None, requires_grad=False))
466
        if hidden_act != "silu":
467
468
469
            raise ValueError(
                f"Unsupported activation: {hidden_act}. Only silu is supported for now."
            )
470
471
472
473
474
475
476
477
478
479
480
481
482
        self.act_fn = SiluAndMul()

    def forward(self, x):
        gate_up, _ = self.gate_up_proj(x)
        x = self.act_fn(gate_up)
        x, _ = self.down_proj(x)
        return x


def make_shared_experts(
    N: int,
    K: int,
    in_dtype: torch.dtype = torch.bfloat16,
483
    quant_dtype: torch.dtype | str | None = None,
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
) -> torch.nn.Module:
    from vllm.model_executor.layers.quantization.fp8 import Fp8Config

    (_, w1, w1_s, _), (_, w2, w2_s, _) = make_test_weights(
        1,
        N,
        K,
        in_dtype=in_dtype,
        quant_dtype=quant_dtype,
    )
    old_dtype = torch.get_default_dtype()
    try:
        torch.set_default_dtype(in_dtype)
        if quant_dtype == torch.float8_e4m3fn:
            w1 = w1[0].transpose(0, 1)
            w2 = w2[0].transpose(0, 1)
            w1_s = w1_s[0].transpose(0, 1) if w1_s is not None else None
            w2_s = w2_s[0].transpose(0, 1) if w2_s is not None else None
            quant_config = Fp8Config(True)
        else:
            w1 = w1[0]
            w2 = w2[0]
            w1_s = None
            w2_s = None
            quant_config = None

510
        return RealMLP(K, N, w1, w2, "silu", quant_config, w1_s=w1_s, w2_s=w2_s)
511
512
    finally:
        torch.set_default_dtype(old_dtype)