Keep speculative grammar traversal scalar-safe

EAGLE verification can pass torch scalar tensors through the speculative tree traversal before calling grammar backends. xgrammar/tvm_ffi requires Python int token ids, so normalize traversal indices and draft token ids at the boundary while leaving tensor storage unchanged.

Constraint: xgrammar/tvm_ffi rejects torch scalar tensors for GrammarMatcher.accept_token
Rejected: Coerce tokens inside every grammar backend | the invalid value originates in speculative traversal and should be fixed before backend dispatch
Confidence: high
Scope-risk: narrow
Directive: Keep grammar backend calls scalar-Python typed; do not pass torch scalar tensors through accept_token
Tested: remote g0034 cjy-glm5-new PYTHONPATH=python python -m pytest -q test/registered/unit/speculative/test_spec_utils.py test/registered/unit/configs/test_nsa_index_layers.py test/registered/unit/models/test_deepseek_index_skip_weight_loading.py -> 19 passed
Tested: remote g0034 cjy-glm5-new py_compile for modified runtime files
Not-tested: live decode replay after this commit
This commit is contained in:
laoyao0822
2026-06-21 05:16:21 +08:00
committed by Yuanhang Sun
parent 9f7c193eb1
commit 187b700406
2 changed files with 54 additions and 6 deletions

View File

@@ -587,13 +587,14 @@ def traverse_tree(
retrieve_next_sibling: torch.Tensor,
parent_pos: int,
):
curr = int(curr)
if curr == 0:
# the first token generated by the target model, and thus it is always
# accepted from the previous iteration
accepted = True
else:
parent_bitmask = allocate_token_bitmask[parent_pos]
curr_token_id = draft_tokens[curr]
curr_token_id = int(draft_tokens[curr])
if vocab_size and curr_token_id >= vocab_size:
accepted = False
else:
@@ -605,14 +606,15 @@ def traverse_tree(
if accepted:
if curr != 0:
# Accept the current token
grammar.accept_token(int(draft_tokens[curr]))
grammar.accept_token(curr_token_id)
if not grammar.is_terminated():
# Generate the bitmask for the current token
grammar.fill_vocab_mask(allocate_token_bitmask, curr)
if retrieve_next_token[curr] != -1:
next_token = int(retrieve_next_token[curr])
if next_token != -1:
# Visit the child node
dfs(
int(retrieve_next_token[curr]),
next_token,
retrieve_next_token,
retrieve_next_sibling,
curr,
@@ -622,10 +624,11 @@ def traverse_tree(
# Rollback the current token
grammar.rollback(1)
if retrieve_next_sibling[curr] != -1:
next_sibling = int(retrieve_next_sibling[curr])
if next_sibling != -1:
# Visit the sibling node
dfs(
int(retrieve_next_sibling[curr]),
next_sibling,
retrieve_next_token,
retrieve_next_sibling,
parent_pos,