-
Notifications
You must be signed in to change notification settings - Fork 306
cuda.core: expose driver-populated fields on WorkqueueResource #2330
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
18 commits
Select commit
Hold shift + click to select a range
1c6a5e1
cuda.core: expose driver-populated fields on WorkqueueResource
leofang 2afae3f
cuda.core: fill in PR number in release-notes entry
leofang a22005d
cuda.core: drop TYPE_CHECKING Device import to satisfy cython-lint
leofang 08a6419
cuda.core: fold #2329 + #2330 release notes; parametrize enum test; a…
leofang e4ebbba
cuda.core tests: drop init_cuda from multi-GPU workqueue test
leofang 1c3ceb7
cuda.core tests: drop unnecessary set_current calls in multi-GPU work…
leofang 9092dc4
cuda.core tests: extract shared _RESOURCE_UNAVAILABLE_ERRORS tuple wi…
leofang aebf271
cuda.core: restore Device TYPE_CHECKING import with noqa
leofang cb15baf
cuda.core: simplify noqa to bare form (cython-lint didn't parse the p…
leofang 202959b
cuda.core: use bare Device annotation on WorkqueueResource.device
leofang 0a1c7df
cuda.core tests: register WorkqueueSharingScopeType in _CASES
leofang 8fd22bc
cuda.core tests: gate WorkqueueSharingScopeType binding entry on CUDA…
leofang 106d5c1
cuda.core tests: sharpen CUDA-version boundary in WorkqueueSharingSco…
leofang be917b6
cuda.core: apply Mike's suggestion for WorkqueueResourceOptions.shari…
leofang a9939b5
fix typing
leofang 37483ae
Update _device_resources.pyi
leofang ccb50cc
cuda.core: regenerate .pyi to match stubgen-pyx output
leofang 119238b
Apply suggestions from code review
leofang 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
Some comments aren't visible on the classic Files Changed page.
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
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
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
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
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
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
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.
nit: Could use a
matchstatement here.