vllm.models.qwen4_exp.nvidia.ngram_embedding ¶
Qwen4Exp n-gram embeddings with device and pinned-host storage.
Classes:
Qwen4ExpNGramEmbedding ¶
Bases: Module
Methods:
-
compute_ngram_ids–Compute n-gram embedding indices for the current request layout.
-
load_weights–Load hash buffers and checkpoint-split embedding rows.
-
start_prefetch–Start the pinned lookup while the preceding decoder layer runs.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
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 673 674 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 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 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 | |
_is_prime_64(value) staticmethod ¶
Return whether a 64-bit integer is prime.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_make_layer_multipliers(*, ngram_size, unigram_vocab_size, seed, ple_dense_layer_id) classmethod ¶
Build deterministic hash multipliers for one PLE layer.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_make_vocab_layout(*, ngram_vocab_size_base, ngram_heads, ple_dense_layer_id) classmethod ¶
Build per-head vocabulary sizes, offsets, and total row count.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_nth_prime_after(start, count) classmethod ¶
Return the count-th prime strictly greater than start.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_splitmix64(value) classmethod ¶
Mix an integer into a deterministic unsigned 64-bit value.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
compute_ngram_ids(input_ids, query_start_loc, ngram_context, output=None) ¶
Compute n-gram embedding indices for the current request layout.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
load_weights(weights) ¶
Load hash buffers and checkpoint-split embedding rows.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
start_prefetch(hidden_states, input_ids, query_start_loc, ngram_context) ¶
Start the pinned lookup while the preceding decoder layer runs.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
Qwen4ExpPLEDeviceEmbedding ¶
Bases: Qwen4ExpPLEEmbedding
PLE table allocated on the active model device.
Methods:
-
allocate_embedding_weight–Allocate the complete PLE weight on the active device.
-
forward–Gather ETP inputs, look up embeddings, and select local rows.
-
start_prefetch–Resident embedding prefetch is a no-op.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
allocate_embedding_weight(num_embeddings, embedding_dim, dtype) ¶
Allocate the complete PLE weight on the active device.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
forward(ngram_ids) ¶
Gather ETP inputs, look up embeddings, and select local rows.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
start_prefetch(hidden_states, ngram_ids) ¶
Qwen4ExpPLEEmbedding ¶
Bases: PLEVocabParallelEmbedding, ABC
ETP-sharded PLE table shared by device and pinned-host backends.
Methods:
-
allocate_embedding_weight–Allocate storage for the complete embedding weight.
-
dequantize–Delegate storage-format conversion to the embedding method.
-
start_prefetch–Start an asynchronous lookup when supported.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
_gather_dp_ids(ngram_ids, slot_size) ¶
Gather DP-local IDs that share one ETP-sharded PLE table.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_get_dp_gather_slot(local_num_tokens) ¶
Return the per-DP slot size and this rank's slot offset.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_select_embeddings(embeddings, local_num_tokens, slot_offset) ¶
Select this DP rank's rows from the ETP-reduced embeddings.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
allocate_embedding_weight(num_embeddings, embedding_dim, dtype) abstractmethod ¶
Allocate storage for the complete embedding weight.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
dequantize(embeddings, output_dtype) ¶
Delegate storage-format conversion to the embedding method.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
start_prefetch(hidden_states, ngram_ids) abstractmethod ¶
Start an asynchronous lookup when supported.
Qwen4ExpPLEEmbeddingMethod ¶
Bases: QuantizeMethodBase
Quantization interface shared by resident and pinned PLE tables.
Methods:
-
dequantize–Convert looked-up PLE rows to the activation dtype.
-
from_quant_config–Select the concrete PLE embedding format for a layer.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
dequantize(layer, embeddings, output_dtype) abstractmethod ¶
Convert looked-up PLE rows to the activation dtype.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
from_quant_config(quant_config, prefix, embedding_dtype=None) staticmethod ¶
Select the concrete PLE embedding format for a layer.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
Qwen4ExpPLEFp8EmbeddingMethod ¶
Bases: Qwen4ExpPLEEmbeddingMethod
FP8 PLE embedding with one global checkpoint scale.
Methods:
-
process_weights_after_loading–Reject FP8 PLE checkpoints without a global scale.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
process_weights_after_loading(layer) ¶
Reject FP8 PLE checkpoints without a global scale.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
Qwen4ExpPLEPinnedHostEmbedding ¶
Bases: Qwen4ExpPLEEmbedding
PLE table loaded into pinned CPU memory and looked up through UVA.
Methods:
-
allocate_embedding_weight–Allocate the complete PLE weight directly in pinned CPU memory.
-
forward–Finish the pinned lookup into graph-owned output storage.
-
start_prefetch–Gather ETP IDs and launch their UVA lookup on the side stream.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
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 | |
_finalize_prefetch(prefetch_output, output) ¶
Join the side stream, reduce ETP shards, and select local rows.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_lookup(input_ids, output=None) ¶
Look up local ETP rows while preserving the weight storage dtype.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_reduce_etp_embeddings(embeddings) ¶
Combine pinned lookup results owned by different ETP ranks.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
allocate_embedding_weight(num_embeddings, embedding_dim, dtype) ¶
Allocate the complete PLE weight directly in pinned CPU memory.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
forward(hidden_states) ¶
Finish the pinned lookup into graph-owned output storage.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
start_prefetch(hidden_states, ngram_ids) ¶
Gather ETP IDs and launch their UVA lookup on the side stream.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
Qwen4ExpPLEUnquantizedEmbeddingMethod ¶
Bases: Qwen4ExpPLEEmbeddingMethod
Unquantized PLE embedding storage and lookup semantics.
Source code in vllm/models/qwen4_exp/nvidia/ngram_embedding.py
_lookup_ple_embedding_from_pinned_kernel(weight_ptr, ids_ptr, output_ptr, embedding_dim, tp_vocab_start, tp_vocab_end, BLOCK_D) ¶
Look up TP-owned PLE rows through a CUDA view of pinned host memory.