vllm.model_executor.layers.fused_moe.oracle.int_wna16 ¶
_get_priority_backends ¶
_get_priority_backends() -> list[WNA16MoEBackend]
Get available backends in priority order based on platform and config.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_process_awq_weights_marlin ¶
_process_awq_weights_marlin(
layer: Module,
weight_bits: int,
pack_factor: int,
group_size: int,
input_dtype: dtype | None,
w13_qweight: Tensor,
w2_qweight: Tensor,
w13_scales: Tensor,
w2_scales: Tensor,
w13_qzeros: Tensor,
w2_qzeros: Tensor,
w13_bias: Tensor | None = None,
w2_bias: Tensor | None = None,
) -> tuple[
Tensor,
Tensor,
Tensor,
Tensor,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
]
AWQ-specific Marlin weight post-processing.
AWQ checkpoints use a different packing order than GPTQ, so they need AWQ-specific weight repacking and zero-point conversion before Marlin runs.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 | |
_process_weights_flashinfer ¶
_process_weights_flashinfer(
w13_qweight: Tensor,
w2_qweight: Tensor,
w13_scales: Tensor,
w2_scales: Tensor,
w13_g_idx: Tensor,
w2_g_idx: Tensor,
w13_bias: Tensor | None = None,
w2_bias: Tensor | None = None,
) -> tuple[
Tensor,
Tensor,
Tensor,
Tensor,
Tensor,
Tensor,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
]
Flashinfer (TRT-LLM MXINT4) weight post-processing.
Steps¶
- Transform weights/scales via
prepare_static_weights_for_trtllm_mxint4_moe. - Return transformed tensors, passing through g_idx/bias unchanged.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_process_weights_marlin ¶
_process_weights_marlin(
layer: Module,
input_dtype: dtype | None,
num_bits: int,
pack_factor: int,
group_size: int,
actorder: str | None,
w13_qweight: Tensor,
w2_qweight: Tensor,
w13_scales: Tensor,
w2_scales: Tensor,
w13_g_idx: Tensor,
w2_g_idx: Tensor,
w13_qzeros: Tensor | None = None,
w2_qzeros: Tensor | None = None,
w13_bias: Tensor | None = None,
w2_bias: Tensor | None = None,
) -> tuple[
Tensor,
Tensor,
Tensor,
Tensor,
Tensor,
Tensor,
Tensor,
Tensor,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
]
Standard Marlin weight post-processing shared by MARLIN and BATCHED_MARLIN backends.
Steps¶
- Optional FP8 preprocessing of packed weights / scales.
- Sort / reset g_idx tensors for act-order handling.
- Repack weights via
gptq_marlin_moe_repack. - Permute scales (and optionally extract INT8 global scales).
- Permute bias tensors.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 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 510 511 512 513 514 515 516 517 518 519 520 | |
_process_weights_xpu ¶
_process_weights_xpu(
layer: Module,
quant_config: QuantizationConfig,
w13_qweight: Tensor,
w2_qweight: Tensor,
w13_scales: Tensor,
w2_scales: Tensor,
w13_bias: Tensor | None = None,
w2_bias: Tensor | None = None,
) -> tuple[
Tensor,
Tensor,
Tensor,
Tensor,
Tensor | None,
Tensor | None,
]
Repack GPTQ-format INT4 MoE weights into the layout vllm_xpu_kernels.fused_moe_interface.xpu_fused_moe(is_int4=True) expects:
w13: [E, 2*N, K] int4 (uint8 storage [E, 2*N, K // 2])
w13_scales: [E, 2*N, K // group_size] params_dtype
w2: [E, K, N] int4 (uint8 storage [E, K, N // 2])
w2_scales: [E, K, N // group_size] params_dtype
Input GPTQ layout from FusedMoE.weight_loader: w13: [E, K // 8, 2N] int32 (8 nibbles per int32 along the input dim) w13_scales: [E, K // group_size, 2N] params_dtype w2: [E, N // 8, K] int32 w2_scales: [E, N // group_size, K] params_dtype
Transpose dim 1 ↔ dim 2 then view int32 → uint8 to recover sequential int4-packed bytes along the input dim. Each packed int32 holds 8 nibbles (n7<<28)|(n6<<24)|...|(n1<<4)|n0 in ascending K order; on a little-endian host the int32→uint8 view exposes them as bytes [n1<<4|n0, n3<<4|n2, n5<<4|n4, n7<<4|n6], i.e. two nibbles per byte with the lower nibble = lower input-K index. xpu_fused_moe(is_int4=True) expects this convention; on a big-endian host the byte order reverses and the kernel would silently miscompute, so we hard-fail.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
backend_to_kernel_cls ¶
backend_to_kernel_cls(
backend: WNA16MoEBackend,
) -> list[type[FusedMoEExperts]]
Return the experts class for the given backend, or None for NONE.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
convert_to_wna16_moe_kernel_format ¶
convert_to_wna16_moe_kernel_format(
backend: WNA16MoEBackend,
layer: Module,
quant_config: QuantizationConfig
| QuantizationArgs
| None,
input_dtype: dtype | None,
w13: Tensor,
w2: Tensor,
w13_scale: Tensor,
w2_scale: Tensor,
w13_g_idx: Tensor | None = None,
w2_g_idx: Tensor | None = None,
w13_qzeros: Tensor | None = None,
w2_qzeros: Tensor | None = None,
w13_bias: Tensor | None = None,
w2_bias: Tensor | None = None,
) -> tuple[
Tensor,
Tensor,
Tensor,
Tensor,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
Tensor | None,
]
Dispatch weight post-processing to the appropriate per-backend handler.
To add a new backend, implement a _process_weights_<name> helper and add a branch here.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
backend | WNA16MoEBackend | the selected | required |
layer | Module | the | required |
quant_config | QuantizationConfig | QuantizationArgs | None | the | required |
input_dtype | dtype | None | optional activation dtype, usually should be 16 bit. | required |
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 | |
make_wna16_moe_quant_config ¶
make_wna16_moe_quant_config(
w1_scale: Tensor,
w2_scale: Tensor,
group_size: int,
num_bits: int,
w1_zp: Tensor | None = None,
w2_zp: Tensor | None = None,
w1_bias: Tensor | None = None,
w2_bias: Tensor | None = None,
a1_gscale: Tensor | None = None,
a2_gscale: Tensor | None = None,
) -> FusedMoEQuantConfig
Create the FusedMoEQuantConfig for 4 or 8-bit WNA16 MoE.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
select_wna16_moe_backend ¶
select_wna16_moe_backend(
config: FusedMoEConfig, weight_key: QuantKey
) -> tuple[WNA16MoEBackend, type[FusedMoEExperts]]
Select the WNA16 MoE backend.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config | FusedMoEConfig | the shared | required |
weight_key | QuantKey | The QuantKey describing the weight quantization. Must have int4 or int8 type. | required |
Returns:
| Type | Description |
|---|---|
tuple[WNA16MoEBackend, type[FusedMoEExperts]] | A tuple of ( |