Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/build_wheels_genai_linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,11 @@ jobs:
env:
MAT: ${{ needs.generate-matrix.outputs.matrix }}
# Nova Coordinate Filters:
# cuda/13.0-aarch64: Not supported in FBGEMM CI yet
run: |
set -ex
pwd
ls
MATRIX_BLOB="$( python .github/scripts/filter_nova_matrix.py --filter 'gpu_arch_version:13.0-aarch64' )"
MATRIX_BLOB="$( python .github/scripts/filter_nova_matrix.py )"
echo "${MATRIX_BLOB}"
echo "matrix=${MATRIX_BLOB}" >> "${GITHUB_OUTPUT}"

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build_wheels_linux_x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,13 @@ jobs:
env:
MAT: ${{ needs.generate-matrix.outputs.matrix }}
# Nova Coordinate Filters:
# cuda/13.0: Not supported in FBGEMM CI yet
# rocm/3.13t: causes segfaults at runtime
# python/3.14: markupsafe is not available yet for python 3.14, so codegen breaks
run: |
set -ex
pwd
ls
MATRIX_BLOB="$( python .github/scripts/filter_nova_matrix.py --filter gpu_arch_version:13.0 --filter 'gpu_arch_type:rocm;python_version:3.13t' --filter 'python_version:3.14' )"
MATRIX_BLOB="$( python .github/scripts/filter_nova_matrix.py --filter 'gpu_arch_type:rocm;python_version:3.13t' --filter 'python_version:3.14' )"
echo "${MATRIX_BLOB}"
echo "matrix=${MATRIX_BLOB}" >> "${GITHUB_OUTPUT}"

Expand Down
Loading