|
| 1 | +name: Prototype transforms unit-tests on Linux GPU |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + push: |
| 6 | + branches: |
| 7 | + - nightly |
| 8 | + - main |
| 9 | + - release/* |
| 10 | + workflow_dispatch: |
| 11 | + |
| 12 | +env: |
| 13 | + CHANNEL: "nightly" |
| 14 | + |
| 15 | +jobs: |
| 16 | + tests: |
| 17 | + strategy: |
| 18 | + matrix: |
| 19 | + python_version: ["3.8"] |
| 20 | + cuda_arch_version: ["11.6"] |
| 21 | + fail-fast: false |
| 22 | + uses: pytorch/test-infra/.github/workflows/linux_job.yml@main |
| 23 | + with: |
| 24 | + runner: linux.4xlarge.nvidia.gpu |
| 25 | + repository: pytorch/vision |
| 26 | + gpu-arch-type: cuda |
| 27 | + gpu-arch-version: ${{ matrix.cuda_arch_version }} |
| 28 | + timeout: 120 |
| 29 | + script: | |
| 30 | + # Mark Build Directory Safe |
| 31 | + git config --global --add safe.directory /__w/vision/vision |
| 32 | +
|
| 33 | + # Set up Environment Variables |
| 34 | + export PYTHON_VERSION="${{ matrix.python_version }}" |
| 35 | + export VERSION="${{ matrix.cuda_arch_version }}" |
| 36 | + export CUDATOOLKIT="pytorch-cuda=${VERSION}" |
| 37 | +
|
| 38 | + # Set CHANNEL |
| 39 | + if [[ (${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then |
| 40 | + export CHANNEL=test |
| 41 | + else |
| 42 | + export CHANNEL=nightly |
| 43 | + fi |
| 44 | +
|
| 45 | + # Create Conda Env |
| 46 | + conda create -yp ci_env python="${PYTHON_VERSION}" numpy libpng jpeg scipy |
| 47 | + conda activate /work/ci_env |
| 48 | +
|
| 49 | + # Install PyTorch, Torchvision, and testing libraries |
| 50 | + set -ex |
| 51 | + conda install \ |
| 52 | + --yes \ |
| 53 | + -c "pytorch-${CHANNEL}" \ |
| 54 | + -c nvidia \ |
| 55 | + pytorch \ |
| 56 | + torchdata \ |
| 57 | + "${CUDATOOLKIT}" |
| 58 | +
|
| 59 | + python3 -c "import torch; exit(not torch.cuda.is_available())" |
| 60 | + |
| 61 | + python3 setup.py develop |
| 62 | + python3 -m pip install pytest pytest-mock pytest-cov |
| 63 | +
|
| 64 | + # Run Tests |
| 65 | + python3 -m torch.utils.collect_env |
| 66 | + python3 -m pytest \ |
| 67 | + --durations=20 \ |
| 68 | + --cov=torchvision/prototype/transforms \ |
| 69 | + --cov-report=term-missing \ |
| 70 | + test/test_prototype_transforms*.py |
0 commit comments