-
Notifications
You must be signed in to change notification settings - Fork 528
[Bugfix] Fix grammar_bitmask IndexError caused by outdated apply_grammar_bitmask method
#2314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -1283,42 +1283,52 @@ def apply_grammar_bitmask( | |||||||||||||
| scheduler_output: "SchedulerOutput", | ||||||||||||||
| logits: torch.Tensor, | ||||||||||||||
| ) -> torch.Tensor: | ||||||||||||||
| # Serialization of np.ndarray is much more efficient than a tensor, | ||||||||||||||
| # so we receive it in that format. | ||||||||||||||
| grammar_bitmask = scheduler_output.grammar_bitmask | ||||||||||||||
| if grammar_bitmask is None: | ||||||||||||||
| return | ||||||||||||||
|
|
||||||||||||||
| # We receive the structured output bitmask from the scheduler, but the | ||||||||||||||
| # indices of the requests in the batch may not match the indices of | ||||||||||||||
| # the bitmask since the scheduler doesn't know how the gpu runner is | ||||||||||||||
| # ordering the requests in the batch. We need to sort the bitmask to | ||||||||||||||
| # match the order of the requests used here. | ||||||||||||||
| # We receive the structured output bitmask from the scheduler, | ||||||||||||||
| # compacted to contain bitmasks only for structured output requests. | ||||||||||||||
| # The order of the requests in the bitmask is not guaranteed to be the | ||||||||||||||
| # same as the order of the requests in the gpu runner's batch. We need | ||||||||||||||
| # to sort the bitmask to match the order of the requests used here. | ||||||||||||||
|
|
||||||||||||||
| # Get the batch indices of the structured output requests. | ||||||||||||||
| # Keep track of the number of speculative tokens scheduled for every | ||||||||||||||
| # request in the batch, as the logit indices are offset by this amount. | ||||||||||||||
| struct_out_req_batch_indices: dict[str, int] = {} | ||||||||||||||
| indices_match = True | ||||||||||||||
| for req_id in self.input_batch.req_ids: | ||||||||||||||
| mask_index = scheduler_output.structured_output_request_ids.get( | ||||||||||||||
| req_id) | ||||||||||||||
| if mask_index is None: | ||||||||||||||
| # not a structured output request | ||||||||||||||
| continue | ||||||||||||||
| batch_index = self.input_batch.req_id_to_index[req_id] | ||||||||||||||
| if batch_index != mask_index: | ||||||||||||||
| indices_match = False | ||||||||||||||
| struct_out_req_batch_indices[req_id] = batch_index | ||||||||||||||
|
|
||||||||||||||
| if not indices_match: | ||||||||||||||
| # Sort the bitmask to match the order of the requests | ||||||||||||||
| sorted_bitmask = np.zeros_like(grammar_bitmask) | ||||||||||||||
| for req_id, batch_index in struct_out_req_batch_indices.items(): | ||||||||||||||
| orig_index = scheduler_output.structured_output_request_ids[ | ||||||||||||||
| req_id] | ||||||||||||||
| sorted_bitmask[batch_index] = grammar_bitmask[orig_index] | ||||||||||||||
| grammar_bitmask = sorted_bitmask | ||||||||||||||
| cumulative_offset = 0 | ||||||||||||||
| seq = sorted(self.input_batch.req_id_to_index.items(), | ||||||||||||||
| key=lambda x: x[1]) | ||||||||||||||
| for req_id, batch_index in seq: | ||||||||||||||
| logit_index = batch_index + cumulative_offset | ||||||||||||||
| cumulative_offset += len( | ||||||||||||||
| scheduler_output.scheduled_spec_decode_tokens.get(req_id, [])) | ||||||||||||||
| if req_id in scheduler_output.structured_output_request_ids: | ||||||||||||||
| struct_out_req_batch_indices[req_id] = logit_index | ||||||||||||||
|
|
||||||||||||||
| out_indices = [] | ||||||||||||||
|
|
||||||||||||||
| # Reorder the bitmask to match the order of the requests in the batch. | ||||||||||||||
| sorted_bitmask = np.zeros_like(grammar_bitmask, | ||||||||||||||
| shape=(logits.shape[0], | ||||||||||||||
| grammar_bitmask.shape[1])) | ||||||||||||||
| cumulative_index = 0 | ||||||||||||||
| seq = sorted(scheduler_output.structured_output_request_ids.items(), | ||||||||||||||
| key=lambda x: x[1]) | ||||||||||||||
| for req_id, _ in seq: | ||||||||||||||
|
Comment on lines
+1315
to
+1317
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The variable
Suggested change
|
||||||||||||||
| logit_index = struct_out_req_batch_indices[req_id] | ||||||||||||||
| num_spec_tokens = len( | ||||||||||||||
| scheduler_output.scheduled_spec_decode_tokens.get(req_id, [])) | ||||||||||||||
| for i in range(1 + num_spec_tokens): | ||||||||||||||
| sorted_bitmask[logit_index + i] = \ | ||||||||||||||
| grammar_bitmask[cumulative_index + i] | ||||||||||||||
| out_indices.append(logit_index + i) | ||||||||||||||
| cumulative_index += 1 + num_spec_tokens | ||||||||||||||
| grammar_bitmask = sorted_bitmask | ||||||||||||||
|
|
||||||||||||||
| # Serialization of np.ndarray is much more efficient than a tensor, | ||||||||||||||
| # so we receive it in that format. | ||||||||||||||
| grammar_bitmask = torch.from_numpy(grammar_bitmask) | ||||||||||||||
|
|
||||||||||||||
| # TODO: compatibility with spec decode. | ||||||||||||||
| # NOTE: | ||||||||||||||
| # 1. XGrammar bitmask applying only supports CPU and GPU. | ||||||||||||||
| # 2. The logits and bitmask should be on the same device. | ||||||||||||||
|
|
@@ -1328,7 +1338,7 @@ def apply_grammar_bitmask( | |||||||||||||
| xgr.apply_token_bitmask_inplace( | ||||||||||||||
| logits, | ||||||||||||||
| grammar_bitmask, | ||||||||||||||
| indices=list(struct_out_req_batch_indices.values()), | ||||||||||||||
| indices=out_indices, | ||||||||||||||
| ) | ||||||||||||||
| return logits.to(self.device).to(logits_dtype) | ||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For clarity and to avoid confusion, consider renaming
seqto something more descriptive, likerequests_in_batch_order. This is especially helpful becauseseqis reused later with a different meaning.