Support cuda 12.8.1 and SBSA wheels #1507
Open
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.
This pull request includes several updates to the build and packaging process for improved compatibility and functionality. The most important changes include updates to the GitHub Actions workflow for building wheels, modifications to the
setup.py
script to better handle different architectures and platforms, and minor updates to the CUDA toolkit version.GitHub Actions Workflow Updates:
os
matrix to includeubuntu-22.04
andubuntu-22.04-arm
and added anarch
matrix to support bothx86_64
andaarch64
architectures. Excluded incompatible combinations to prevent build errors.MATRIX_ARCH
environment variable based on thearch
matrix value.v0.2.19
tov0.2.23
.pytorch-triton
and the installation URLs in the workflow to support the new architecture matrix.setup.py
Script Updates:get_platform
function toget_arch
and updated it to return the architecture of the current system. Added a newget_system
function to return the system name, and updated theget_platform
function to use bothget_system
andget_arch
. [1] [2]Why this PR @tridao ?