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.
-
map_wna16_backend–Map user's MoEBackend to WNA16MoEBackend.
-
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
_humming_wna16_weight_schema(quant_config) ¶
Humming weight schema for a WNA16 checkpoint, derived from the quant config rather than the running kernel.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_pad_rows(x, padded_rows) ¶
Zero-pad a (E, rows, cols) tensor to padded_rows rows.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_pad_w13_bias(bias, n, padded_n) ¶
Zero-pad each gate/up shard of a (E, 2 * n) bias to padded_n.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_pad_w13_shard_cols(x, unit, padded_unit) ¶
Zero-pad each of the two gate/up shards of a (E, rows, 2 * unit) tensor along its last dim, from unit to padded_unit columns.
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
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 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 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 | |
_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
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 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 | |
_process_weights_emulation_awq(w13, w2, w13_scale, w2_scale, w13_qzeros, w2_qzeros) ¶
Dequantize AWQ int4 weights to BF16 for the emulation backend.
AWQ inputs
w13: [E, K, 2N//8] int32 (packed along N, gate+up on dim 2) w2: [E, N, K//8] int32 (packed along K) w13_scale: [E, K//gs, 2N] float16 w2_scale: [E, N//gs, K] float16
Outputs (what TritonExperts expects): w13_out: [E, 2*N, K] bfloat16 w2_out: [E, K, N] bfloat16
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_process_weights_emulation_gptq(w13, w2, w13_scale, w2_scale, w13_qzeros, w2_qzeros) ¶
Dequantize int4 weights to BF16 for the emulation backend.
Inputs are in GPTQ packed format
w13: [E, K//8, 2N] int32 (gate+up proj stacked on dim 2) w2: [E, N//8, K] int32 w13_scale: [E, K//gs, 2N] float16 w2_scale: [E, N//gs, K] float16
Outputs (what TritonExperts expects): w13_out: [E, 2*N, K] bfloat16 w2_out: [E, K, N] bfloat16
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
_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
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 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 666 667 668 669 670 671 672 | |
_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
_unpack_and_dequant_int4_awq(w_int32, scale, qzeros, transpose_output, output_dtype=torch.bfloat16) ¶
Unpack AWQ-packed int4 weights and dequantize to output_dtype.
AWQ packs along the N (column) dimension with an interleave permutation [0,2,4,6,1,3,5,7] applied before packing, so unpacking must undo that.
Parameters:
-
(w_int32¶Tensor) –packed weights, shape [E, K, N_packed] where N_packed = N//8 (8 nibbles per int32, packed along N with AWQ interleaving).
-
(scale¶Tensor) –per-group scales, shape [E, K//group_size, N], float16.
-
(qzeros¶Tensor | None) –asymmetric zero-points, shape [E, K//gs, N_packed], int32. None for symmetric (uint4b8 with implicit bias 8).
-
(transpose_output¶bool) –if True return [E, N, K]; if False return [E, K, N].
-
(output_dtype¶dtype, default:bfloat16) –target floating-point dtype (bfloat16 or float16).
Returns:
-
Tensor–Dequantized weight tensor in the requested layout.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 | |
_unpack_and_dequant_int4_gptq(w_int32, scale, qzeros, transpose_output, output_dtype=torch.bfloat16) ¶
Unpack GPTQ-packed int4 weights and dequantize to output_dtype.
Parameters:
-
(w_int32¶Tensor) –packed weights, shape [E, K_packed, N] where K_packed = K//8 (8 nibbles per int32, LSB-first in the K dimension).
-
(scale¶Tensor) –per-group scales, shape [E, K//group_size, N], float16.
-
(qzeros¶Tensor | None) –optional asymmetric zero-points, shape [E, K//gs, N//8], int32. None for symmetric (uint4b8 with implicit bias 8).
-
(transpose_output¶bool) –if True return [E, N, K]; if False return [E, K, N].
-
(output_dtype¶dtype, default:bfloat16) –target floating-point dtype (bfloat16 or float16).
Returns:
-
Tensor–Dequantized weight tensor in the requested layout.
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. Backends that rewrite the layer's parameters in place (e.g. Humming) return None; the caller then skips the param scatter.
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
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 | |
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, gemm1_clamp_limit=None, gemm1_alpha=None, gemm1_beta=None) ¶
Create the FusedMoEQuantConfig for 4 or 8-bit WNA16 MoE.
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
map_wna16_backend(runner_backend) ¶
Map user's MoEBackend to WNA16MoEBackend.
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).
Source code in vllm/model_executor/layers/fused_moe/oracle/int_wna16.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | |