forked from pytorch/rl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create
wheels.yml
for github actions (pytorch#244)
- Loading branch information
Showing
19 changed files
with
261 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
name: Wheels | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
push: | ||
branches: | ||
- release/0.0.1 | ||
|
||
jobs: | ||
|
||
build-wheel-linux: | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
python_version: [["3.7", "cp37-cp37m"], ["3.8", "cp38-cp38"], ["3.9", "cp39-cp39"], ["3.10", "cp310-cp310"]] | ||
cuda_support: [["", "--extra-index-url https://download.pytorch.org/whl/cpu", "\"['cpu', '11.3', '11.6']\"", "cpu"], ["+cu102", "", "\"['10.2']\"", "cuda102"]] | ||
container: pytorch/manylinux-${{ matrix.cuda_support[3] }} | ||
steps: | ||
- name: Checkout torchrl | ||
uses: actions/checkout@v2 | ||
- name: Install PyTorch 1.12 RC | ||
run: | | ||
export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH" | ||
python3 -mpip install torch==1.12 ${{ matrix.cuda_support[1] }} | ||
python3 -mpip install "git+https://github.com/pytorch/functorch.git@release/0.2" | ||
- name: Build wheel | ||
run: | | ||
export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH" | ||
python3 -mpip install wheel | ||
VERSION_TAG=${{ matrix.cuda_support[0] }} PYTORCH_CUDA_RESTRICTIONS=${{ matrix.cuda_support[2] }} python3 setup.py bdist_wheel | ||
# NB: wheels have the linux_x86_64 tag so we rename to manylinux1 | ||
# find . -name 'dist/*whl' -exec bash -c ' mv $0 ${0/linux/manylinux1}' {} \; | ||
# pytorch/pytorch binaries are also manylinux_2_17 compliant but they | ||
# pretend that they're manylinux1 compliant so we do the same. | ||
- name: Show auditwheel output; confirm 2-17 | ||
run: | | ||
python3 -mpip install auditwheel | ||
auditwheel show dist/* | ||
- name: Upload wheel for the test-wheel job | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: torchrl-linux-${{ matrix.python_version[0] }}.whl | ||
path: dist/torchrl-0.0.1-*.whl | ||
- name: Upload wheel for download | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: torchrl-batch.whl | ||
path: dist/*.whl | ||
|
||
build-wheel-mac: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
python_version: [["3.7", "3.7"], ["3.8", "3.8"], ["3.9", "3.9"], ["3.10", "3.10.3"]] | ||
steps: | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python_version[1] }} | ||
architecture: x64 | ||
- name: Checkout torchrl | ||
uses: actions/checkout@v2 | ||
- name: Install PyTorch 1.12 RC | ||
run: | | ||
python3 -mpip install torch==1.12 --extra-index-url https://download.pytorch.org/whl/cpu | ||
python3 -mpip install "git+https://github.com/pytorch/functorch.git@release/0.2" | ||
- name: Build wheel | ||
run: | | ||
export CC=clang CXX=clang++ | ||
python3 -mpip install wheel | ||
python3 setup.py bdist_wheel | ||
- name: Upload wheel for the test-wheel job | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: torchrl-mac-${{ matrix.python_version[0] }}.whl | ||
path: dist/*.whl | ||
- name: Upload wheel for download | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: torchrl-batch.whl | ||
path: dist/*.whl | ||
|
||
test-wheel: | ||
needs: [build-wheel-linux, build-wheel-mac] | ||
strategy: | ||
matrix: | ||
os: [["linux", "ubuntu-18.04"], ["mac", "macos-latest"]] | ||
python_version: [ "3.7", "3.8", "3.9", "3.10" ] | ||
runs-on: ${{ matrix.os[1] }} | ||
steps: | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python_version }} | ||
architecture: x64 | ||
- name: Checkout torchrl | ||
uses: actions/checkout@v2 | ||
- name: Install PyTorch 1.12 RC | ||
run: | | ||
python3 -mpip install torch==1.12 torchvision --extra-index-url https://download.pytorch.org/whl/cpu | ||
python3 -mpip install "git+https://github.com/pytorch/functorch.git@release/0.2" | ||
- name: Upgrade pip | ||
run: | | ||
python3 -mpip install --upgrade pip | ||
- name: Install test dependencies | ||
run: | | ||
python3 -mpip install numpy pytest pytest-cov codecov unittest-xml-reporting pillow>=4.1.1 scipy av networkx expecttest pyyaml | ||
- name: Download built wheels | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: torchrl-${{ matrix.os[0] }}-${{ matrix.python_version }}.whl | ||
path: /tmp/wheels | ||
- name: Install built wheels | ||
run: | | ||
python3 -mpip install /tmp/wheels/* | ||
- name: Log version string | ||
run: | | ||
# Avoid ambiguity of "import torchrl" by deleting the source files. | ||
rm -rf torchrl/ | ||
python -c "import torchrl; print(torchrl.__version__)" | ||
- name: Run tests | ||
run: | | ||
set -e | ||
export IN_CI=1 | ||
mkdir test-reports | ||
python -m torch.utils.collect_env | ||
python -c "import torchrl; print(torchrl.__version__)" | ||
EXIT_STATUS=0 | ||
pytest test/smoke_test.py -v --durations 20 | ||
exit $EXIT_STATUS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.