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 cdf8f4f commit d922799Copy full SHA for d922799
.github/workflows/integration_test_8gpu_features.yaml
@@ -27,14 +27,16 @@ permissions:
27
jobs:
28
# checks if job should run for ROCm
29
check-run-job:
30
- matrix:
+ strategy:
31
+ matrix:
32
include:
33
- name: cuda
34
runner: linux.g5.48xlarge.nvidia.gpu
35
gpu-arch-type: cuda
36
- name: rocm
37
runner: linux.rocm.gpu.gfx942.8
38
gpu-arch-type: rocm
39
+ runs-on: ${{ matrix.runner }}
40
outputs:
41
run_job: ${{ steps.set-flag.outputs.run_job }}
42
steps:
@@ -51,7 +53,7 @@ jobs:
51
53
# runs the test
52
54
build-test:
55
needs: check-run-job
- if: ${{ needs.check-runner.outputs.run_job == '1' }}
56
+ if: ${{ needs.check-run-job.outputs.run_job == '1' }}
57
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
58
strategy:
59
fail-fast: false
0 commit comments