Skip to content

Commit

Permalink
Disable py3.12 wheel builds for ROCm
Browse files Browse the repository at this point in the history
  • Loading branch information
jithunnair-amd committed Jun 5, 2024
1 parent 28e73d0 commit e3a8fcb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,10 @@ def generate_wheels_matrix(
for python_version in python_versions:
for arch_version in arches:
gpu_arch_type = arch_type(arch_version)
# Disable py3.12 builds for ROCm because of triton dependency
# on llnl-hatchet, which doesn't have py3.12 wheels available
if gpu_arch_type == ROCM and python_version == "3.12":
continue
gpu_arch_version = (
""
if arch_version in [CPU, CPU_AARCH64]
Expand Down

0 comments on commit e3a8fcb

Please sign in to comment.