-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Fix sampler nan check when calling top_k_top_p_sampling_from_probs #5546
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
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3a9d12e
remove success that is not returned from flash infer any more
yubofredwang 35f603c
remove comments
yubofredwang bf376f2
change function signature
yubofredwang 09eac31
change signature
yubofredwang c8b2a8e
Merge remote-tracking branch 'upstream/main' into fix-page-size
yubofredwang dd25e88
zero out
yubofredwang 8d195d2
fix sampling
yubofredwang 25109cb
fix shape
yubofredwang 0242a77
fix sampler
yubofredwang 86ef868
Merge branch 'main' into fix-page-size
yubofredwang 910ce92
Merge branch 'main' into fix-page-size
zhyncs 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 |
|---|---|---|
|
|
@@ -100,17 +100,16 @@ def forward( | |
| probs, sampling_info.min_ps | ||
| ) | ||
| else: | ||
| # Check Nan will throw exception, only check when crash_on_warnings is True | ||
| check_nan = self.use_nan_detection and crash_on_warnings() | ||
| batch_next_token_ids = top_k_top_p_sampling_from_probs( | ||
| probs, | ||
| sampling_info.top_ks, | ||
| sampling_info.top_ps, | ||
| filter_apply_order="joint", | ||
| check_nan=check_nan, | ||
| ) | ||
|
|
||
| if self.use_nan_detection: | ||
|
Contributor
Author
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. Adding a comment here as well: we can remove this check as the new flash infer sampling implementation guarantees the generation of enough tokens. See PR: flashinfer-ai/flashinfer#912 |
||
| logger.warning("Detected errors during sampling!") | ||
| batch_next_token_ids = torch.zeros_like(batch_next_token_ids) | ||
|
|
||
| elif global_server_args_dict["sampling_backend"] == "pytorch": | ||
| # A slower fallback implementation with torch native operations. | ||
| batch_next_token_ids = top_k_top_p_min_p_sampling_from_probs_torch( | ||
|
|
||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Adding another comment for future reference: because we already check for Nan for logits before they get converted into probs. The chance of probs being Nan is quite low. Even when probs contain NaN, sampling was still able to generate tokens