-
Notifications
You must be signed in to change notification settings - Fork 328
Bump Cython to >=3.3,<3.4 #2771
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
Open
juenglin
wants to merge
1
commit into
NVIDIA:main
Choose a base branch
from
juenglin:cython-3.3-upgrade
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -126,7 +126,12 @@ cdef class SMResourceOptions: | |
| backfill: bool | SequenceABC[bool] = False | ||
|
|
||
|
|
||
| @dataclass | ||
| # init=False: Cython 3.3 wraps the dataclass-generated __init__ in a | ||
| # critical_section and then warns (promoted to an error by our | ||
| # warning_errors=True build) that the __post_init__ call inside it is | ||
| # unprotected Python attribute access. A hand-written __init__ sidesteps | ||
| # that; construction of a not-yet-shared object needs no lock anyway. | ||
|
Comment on lines
+129
to
+133
Contributor
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. Useful comment for the review, but probably not to exist in the codebase forever. I'd just remove it. |
||
| @dataclass(init=False) | ||
| cdef class WorkqueueResourceOptions: | ||
| """Customizable :obj:`WorkqueueResource.configure` options. | ||
|
|
||
|
|
@@ -147,13 +152,19 @@ cdef class WorkqueueResourceOptions: | |
| sharing_scope: WorkqueueSharingScopeType | str | None = None | ||
| concurrency_limit: int | None = None | ||
|
|
||
| def __post_init__(self): | ||
| def __init__( | ||
| self, | ||
| sharing_scope: WorkqueueSharingScopeType | str | None = None, | ||
| concurrency_limit: int | None = None, | ||
| ): | ||
| from cuda.core.typing import WorkqueueSharingScopeType | ||
| check_str_enum(self.sharing_scope, WorkqueueSharingScopeType, allow_none=True) | ||
| if self.concurrency_limit is not None and self.concurrency_limit < 1: | ||
| check_str_enum(sharing_scope, WorkqueueSharingScopeType, allow_none=True) | ||
| if concurrency_limit is not None and concurrency_limit < 1: | ||
| raise ValueError( | ||
| f"concurrency_limit must be >= 1, got {self.concurrency_limit}" | ||
| f"concurrency_limit must be >= 1, got {concurrency_limit}" | ||
| ) | ||
| self.sharing_scope = sharing_scope | ||
| self.concurrency_limit = concurrency_limit | ||
|
|
||
|
|
||
| cdef inline int _validate_split_field_length( | ||
|
|
||
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
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.
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.
This is a breaking API change. We will need to fix the cybind-generated code so this still works as-is.
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.
The annotation for
pArrayin this driver.pyx snippet needs to change tolist[int]andand same here in runtime.pyx.
Is this something you can easily do?