Conversation
benchislett
approved these changes
Jul 30, 2026
benchislett
enabled auto-merge (squash)
July 30, 2026 16:49
4 tasks
added 2 commits
August 2, 2026 14:58
…SparkModel Signed-off-by: Andrii Skliar <askliar@nvidia.com>
Signed-off-by: Andrii Skliar <askliar@nvidia.com>
auto-merge was automatically disabled
August 2, 2026 14:59
Head branch was pushed to by a user without write access
askliar
force-pushed
the
feat/add_support_for_quantized_markov_head
branch
from
August 2, 2026 14:59
2250f9c to
5dbdce4
Compare
benchislett
enabled auto-merge (squash)
August 2, 2026 15:09
mgoin
approved these changes
Aug 3, 2026
Mazyod
pushed a commit
to Mazyod/vllm
that referenced
this pull request
Aug 11, 2026
Signed-off-by: Andrii Skliar <askliar@nvidia.com> Co-authored-by: Andrii Skliar <askliar@nvidia.com> Co-authored-by: Benjamin Chislett <bchislett@nvidia.com> (cherry picked from commit b977407)
D-G-Dimitrov
added a commit
to D-G-Dimitrov/vllm
that referenced
this pull request
Aug 26, 2026
…alError) The rebase onto v0.27.1 merged upstream vllm-project#50424's quant_config into DSparkMarkovHead.__init__ but dropped the fork's keyword-only shard_vocab: bool | None = None parameter during conflict resolution, while keeping the body hunk that reads it. At model load every DSpark draft model (DSv4-NVIDIA/Qwen3) hits 'if shard_vocab is None:' with shard_vocab never bound -> UnboundLocalError at qwen3_dspark.py:89. Restore the keyword-only shard_vocab parameter after quant_config; all callers pass their args by keyword (prod and tests), so the signature stays backward compatible.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add quantization configuration support to the DSpark Markov head.
DSparkMarkovHeadnow accepts and forwardsquant_configto itsParallelLMHead-basedmarkov_w2projection.Qwen3DSparkModelpasses its model quantization configuration when constructing the Markov head.This allows quantized
markov_w2weights, including W4A16 configurations withweight_scale_2, to load through the normal quantization dispatch path while preserving unquantized behavior.Testing
Attempted DSpark quantization and loading with this branch.