We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8706ff3 commit 2452fb0Copy full SHA for 2452fb0
.github/workflows/build_linux_wheels.yaml
@@ -24,8 +24,21 @@ jobs:
24
with-rocm: disable
25
with-cpu: disable
26
python-versions: '["3.10", "3.11", "3.12"]'
27
- build:
+ filter-matrix:
28
+ runs-on: ubuntu-latest
29
needs: generate-matrix
30
+ outputs:
31
+ matrix: ${{ steps.filter.outputs.matrix }}
32
+ steps:
33
+ - name: Filter out CUDA 13 # vLLM v0.10.0 does not built with CUDA 13
34
+ id: filter
35
+ run: |
36
+ echo '${{ needs.generate-matrix.outputs.matrix }}' \
37
+ | jq 'del(.include[] | select(.gpu_arch_version == "13.0"))' \
38
+ > matrix.json
39
+ echo "matrix=$(cat matrix.json)" >> $GITHUB_OUTPUT
40
+ build:
41
+ needs: filter-matrix
42
name: ${{ matrix.repository }}
43
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
44
strategy:
0 commit comments