Disable AOTriton for gfx900 in PyTorch builds #4001
Merged
chiranjeevipattigidi merged 1 commit intomainfrom Mar 17, 2026
Merged
Disable AOTriton for gfx900 in PyTorch builds #4001chiranjeevipattigidi merged 1 commit intomainfrom
chiranjeevipattigidi merged 1 commit intomainfrom
Conversation
Contributor
|
@chiranjeevipattigidi let us please wait for a passing test run that disabling aotriton with the build fixes the pytorch build failures |
Contributor
|
@chiranjeevipattigidi please trigger a release pytorch workflow to verify that the pytorch build passes with this change |
Contributor
araravik-psd
left a comment
There was a problem hiding this comment.
LGTM! The pytorch builds for gfx900 have passed after disabling aotriton for gfx900
araravik-psd
approved these changes
Mar 17, 2026
This was referenced May 1, 2026
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.
Motivation
gfx900 support was recently introduced into the system via #3564. However, AOTriton currently does not support gfx900, leading to PyTorch build failures when this architecture is detected.
eg failure log: https://github.com/ROCm/TheRock/actions/runs/23181751945/job/67356031342
Previously, PyTorch builds were failing due to missing package requirements (see: #3988). Those requirements were later uploaded manually: https://github.com/ROCm/TheRock/tree/main/build_tools/third_party/s3_management#adding-a-new-package-dependency
To ensure stable builds, this PR adds gfx900 to the AOTRITON_UNSUPPORTED_ARCHS list within the PyTorch build script, preventing AOTriton from attempting compilation on unsupported hardware.
Test Plan
Linux Rocm Run: https://github.com/ROCm/TheRock/actions/runs/23189631595
pytorch: https://github.com/ROCm/TheRock/actions/runs/23198946201
Test Result:
gfx900 pytorch builds passed.
Submission Checklist