[QDP] Fix invalid CUDA kernel launch when num_samples exceeds grid dimension limit#968
Open
viiccwen wants to merge 5 commits intoapache:mainfrom
Open
Conversation
Contributor
Author
|
cc @rich7420, @ryankert01 |
ryankert01
requested changes
Jan 29, 2026
Member
There was a problem hiding this comment.
using 65,535, you might be using a limit inherited from the Fermi architecture (pre-2012).
On any modern GPU (Compute Capability 3.0 or higher, which is virtually everything in use today), the 1D grid limit for the X-dimension is significantly higher. (at 2^31-1)
Which may or may not be touch before out-of-memory. (but it's good to add a check tho)
Contributor
Author
|
@ryankert01 thx for suggestion! What if we use |
76021d0 to
1f60d55
Compare
ryankert01
requested changes
Jan 31, 2026
Member
ryankert01
left a comment
There was a problem hiding this comment.
Thanks for the update! Some comments
ryankert01
reviewed
Feb 1, 2026
…d sample length for float32 and float64
Contributor
|
@ryankert01 do you want to take another look? |
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.
Purpose of PR
Fixes a bug in
launch_l2_norm_batch(f64) where attempting to process more than limited samples would result in an invalid CUDA kernel launch. The fix adds early validation to return an error whennum_samplesexceeds the CUDA 1D grid dimension limit.Related Issues or PRs
closes #967
Changes Made
Breaking Changes
Checklist