-
Notifications
You must be signed in to change notification settings - Fork 277
build(pytorch) [Release 7.14] Remove pytorch 2.9 + nightly #6291
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -27,12 +27,8 @@ | |||||||||||||||||||||||||||||||||||||||||||||||
| # pytorch_git_ref – git branch/tag passed to the build job | ||||||||||||||||||||||||||||||||||||||||||||||||
| # exclude_amdgpu_families – (optional) set[str] of family names to drop | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
| # adjusted for release/therock-7.14 | ||||||||||||||||||||||||||||||||||||||||||||||||
| PYTORCH_REFS_LINUX: list[dict] = [ | ||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||
| "pytorch_git_ref": "release/2.9", | ||||||||||||||||||||||||||||||||||||||||||||||||
| # gfx125x not supported for PyTorch 2.9. | ||||||||||||||||||||||||||||||||||||||||||||||||
| "exclude_amdgpu_families": {"gfx125x"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||
| "pytorch_git_ref": "release/2.10", | ||||||||||||||||||||||||||||||||||||||||||||||||
| # gfx125x not supported for PyTorch 2.10. | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -49,21 +45,14 @@ | |||||||||||||||||||||||||||||||||||||||||||||||
| # See https://github.com/ROCm/TheRock/issues/5833. | ||||||||||||||||||||||||||||||||||||||||||||||||
| "exclude_amdgpu_families": {"gfx125x"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Member
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. With the more recent code on the
Contributor
Author
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. agree that would be a good change on main. |
||||||||||||||||||||||||||||||||||||||||||||||||
| "pytorch_git_ref": "nightly", | ||||||||||||||||||||||||||||||||||||||||||||||||
| # gfx125x not yet upstreamed to pytorch/pytorch. | ||||||||||||||||||||||||||||||||||||||||||||||||
| # See https://github.com/ROCm/TheRock/issues/5833. | ||||||||||||||||||||||||||||||||||||||||||||||||
| "exclude_amdgpu_families": {"gfx125x"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
| # adjusted for release/therock-7.14 | ||||||||||||||||||||||||||||||||||||||||||||||||
| # gfx125x is Linux-only; no exclusion needed for Windows. | ||||||||||||||||||||||||||||||||||||||||||||||||
| PYTORCH_REFS_WINDOWS: list[dict] = [ | ||||||||||||||||||||||||||||||||||||||||||||||||
| {"pytorch_git_ref": "release/2.9"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| {"pytorch_git_ref": "release/2.10"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| {"pytorch_git_ref": "release/2.11"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| {"pytorch_git_ref": "release/2.12"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| {"pytorch_git_ref": "nightly"}, | ||||||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||
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.
If we're dropping support for the pytorch
release/2.9branch, shouldn't we also do that on TheRock'smainbranch for nightly releases too? Why just for TheRock'srelease/7.14branch?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.
yes we should. i havent heard any resistant against it since i proposed this to lockstep this with the release.