Skip to content

Commit

Permalink
Asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
joecummings committed Oct 25, 2024
1 parent 7137244 commit d0b7ae4
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions .github/workflows/build_linux_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with-cuda: enable
with-rocm: enable
build-python-only: enable
test:
filter-python-versions:
needs: generate-matrix
runs-on: ubuntu-latest
steps:
Expand All @@ -52,23 +52,20 @@ jobs:
with open(github_output_file, "w") as handle:
handle.write(f"matrix={json.dumps(new_dict)}")
# build:
# if: ${{ needs.generate-matrix.outputs.python_version != '3.9' }}
# needs: generate-matrix
# name: ${{ matrix.repository }}
# uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
# strategy:
# fail-fast: false
# with:
# repository: pytorch/torchtune
# ref: ""
# package-name: torchtune
# build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
# pre-script: .github/scripts/pre_build_script.sh
# trigger-event: ${{ github.event_name }}
# build-platform: 'python-build-package'
# pip-install-torch-extra-args:
# torchvision
# torchao
# - name: output-python-version
# run: echo PYTHON_VERSION=$env.PYTHON_VERSION >> "$GITHUB_OUTPUT"
build:
needs: filter-python-versions
name: ${{ matrix.repository }}
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
strategy:
fail-fast: false
with:
repository: pytorch/torchtune
ref: ""
package-name: torchtune
build-matrix: ${{ needs.filter-python-versions.outputs.matrix }}
pre-script: .github/scripts/pre_build_script.sh
trigger-event: ${{ github.event_name }}
build-platform: 'python-build-package'
pip-install-torch-extra-args:
torchvision
torchao

0 comments on commit d0b7ae4

Please sign in to comment.