Update masked_select and nonzero - #719
Merged
Merged
Conversation
This was
linked to
issues
Jun 29, 2025
iclementine
suggested changes
Jul 2, 2025
| tl.store( | ||
| part_sums_ptr + tl.arange(0, NP_BLOCK), pre_sums - part_sums, mask=mask | ||
| ) | ||
| tl.store(part_sums_ptr + np, final_sum) |
Contributor
There was a problem hiding this comment.
So this kernel computes the CTA-level exclusive-prefix-scan.
iclementine
previously approved these changes
Jul 3, 2025
iclementine
reviewed
Jul 3, 2025
meinie0826
previously approved these changes
Jul 7, 2025
iclementine
suggested changes
Jul 7, 2025
iclementine
left a comment
Contributor
There was a problem hiding this comment.
Removing device guard may cause inaccessible address.
iclementine
approved these changes
Jul 8, 2025
meinie0826
approved these changes
Jul 8, 2025
nicelynice
pushed a commit
to nicelynice/FlagGems
that referenced
this pull request
Feb 24, 2026
* Update masked_select and nonzero * add libentry to masked_select * update masked_select. * update masked_select * Update masked_select.py * Update masked_select.py * Update masked_select.py, adding back device_guard
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.
PR Category
Operator
Type of Change
Refactor & optimization
Description
This PR curbs autotuning for
masked_selectandnonzero, to avoid confusion during testing and debugging.masked_selectis optimized in the following way:Performance gains are clear for larger input sizes.
Issue
#718 #712
Progress
Performance