Support operations with side-effects (state) in cuda.compute#7008
Merged
shwina merged 9 commits intoNVIDIA:mainfrom Dec 19, 2025
Merged
Support operations with side-effects (state) in cuda.compute#7008shwina merged 9 commits intoNVIDIA:mainfrom
cuda.compute#7008shwina merged 9 commits intoNVIDIA:mainfrom
Conversation
2 tasks
7d0e2c6 to
3c51dab
Compare
This comment has been minimized.
This comment has been minimized.
3c51dab to
b14c101
Compare
This comment has been minimized.
This comment has been minimized.
b14c101 to
355222a
Compare
This comment has been minimized.
This comment has been minimized.
… shape, and dtype
0a07c48 to
3f13f42
Compare
Contributor
🥳 CI Workflow Results🟩 Finished in 57m 53s: Pass: 100%/48 | Total: 11h 10m | Max: 35m 01sSee results here. |
fbusato
pushed a commit
to fbusato/cccl
that referenced
this pull request
Dec 23, 2025
…A#7008) * Move algorithm cache to a central registry * Add bench_select.py * Add tests for stateful select and transform * For the purposes of caching, hash DeviceArrayLike objects by pointer, shape, and dtype * Update select benchmark * Bump numba-cuda dependency to 0.23.0 * Add select example * Lint * Remove duplicate cache registry --------- Co-authored-by: Ashwin Srinath <shwina@users.noreply.github.com>
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.
Description
Merge after #6999
numba-cuda0.23 introduces the ability to define kernels and device functions with side-effects (NVIDIA/numba-cuda#666).This PR:
Checklist