vllm.model_executor.layers.fused_moe.oracle.int_wna16 ¶
Functions:
-
backend_to_kernel_cls–Return the experts class for the given backend, or None for NONE.
-
convert_to_wna16_moe_kernel_format–Dispatch weight post-processing to the appropriate per-backend handler.
-
make_wna16_moe_quant_config–Create the FusedMoEQuantConfig for 4 or 8-bit WNA16 MoE.
-
select_wna16_moe_backend–Select the WNA16 MoE backend.
_get_priority_backends() ¶
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(layer, weight_bits, pack_factor, group_size, input_dtype, w13_qweight, w2_qweight, w13_scales, w2_scales, w13_qzeros, w2_qzeros, w13_bias=None, w2_bias=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
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 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 | |
_process_weights_cpu(quant_config, w13, w2, w13_scale, w2_scale, w13_g_idx=None, w2_g_idx=None, w13_qzeros=None, w2_qzeros=None, w13_bias=None, w2_bias=None) ¶
CPU INT4 W4A16 weight post-processing.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 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 | |
_process_weights_flashinfer(w13_qweight, w2_qweight, w13_scales, w2_scales, w13_g_idx, w2_g_idx, w13_bias=None, w2_bias=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(layer, input_dtype, num_bits, pack_factor, group_size, actorder, w13_qweight, w2_qweight, w13_scales, w2_scales, w13_g_idx, w2_g_idx, w13_qzeros=None, w2_qzeros=None, w13_bias=None, w2_bias=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
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 521 522 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 | |
_process_weights_xpu(layer, quant_config, w13_qweight, w2_qweight, w13_scales, w2_scales, w13_bias=None, w2_bias=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) ¶
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(backend, layer, quant_config, input_dtype, w13, w2, w13_scale, w2_scale, w13_g_idx=None, w2_g_idx=None, w13_qzeros=None, w2_qzeros=None, w13_bias=None, w2_bias=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:
-
(backend¶WNA16MoEBackend) –the selected
WNA16MoEBackend. -
(layer¶Module) –the
FusedMoElayer whose parameters are being prepared. -
(quant_config¶QuantizationConfig | QuantizationArgs | None) –the
QuantizationConfigfor this layer. -
(input_dtype¶dtype | None) –optional activation dtype, usually should be 16 bit.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 | |
make_wna16_moe_quant_config(w1_scale, w2_scale, group_size, num_bits, w1_zp=None, w2_zp=None, w1_bias=None, w2_bias=None, a1_gscale=None, a2_gscale=None) ¶
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(config, weight_key) ¶
Select the WNA16 MoE backend.
Parameters:
-
(config¶FusedMoEConfig) –the shared
FusedMoEConfigfor this layer. -
(weight_key¶QuantKey) –The QuantKey describing the weight quantization. Must have int4 or int8 type.
Returns:
-
tuple[WNA16MoEBackend, type[FusedMoEExperts]]–A tuple of (
WNA16MoEBackend, experts class orNone).