Skip to content

Commit

Permalink
Restore Vulkan tests to periodic (#101026)
Browse files Browse the repository at this point in the history
The flaky issue has been fixed by #100909.  In addition, retry support for C++ is now available after #99956.  So it's safe to move this back from unstable now.

Per the discussion with @clee2000, it makes sense to have this as a periodic job given that this one rarely fails.  To prevent any gap here, I have created pytorch/test-infra#4144 to add the necessary testing for Vulkan change.

Pull Request resolved: #101026
Approved by: https://github.com/kit1980
  • Loading branch information
huydhn authored and pytorchmergebot committed May 11, 2023
1 parent 13d445c commit a0e6ae2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,23 @@ jobs:
{ include: [
{ config: "default", shard: 1, num_shards: 1, runner: "ubuntu-latest" },
]}
linux-vulkan-bionic-py3_11-clang9-build:
name: linux-vulkan-bionic-py3.11-clang9
uses: ./.github/workflows/_linux-build.yml
with:
build-environment: linux-vulkan-bionic-py3.11-clang9
docker-image-name: pytorch-linux-bionic-py3.11-clang9
test-matrix: |
{ include: [
{ config: "default", shard: 1, num_shards: 1, runner: "linux.2xlarge" },
]}
linux-vulkan-bionic-py3_11-clang9-test:
name: linux-vulkan-bionic-py3.11-clang9
uses: ./.github/workflows/_linux-test.yml
needs: linux-vulkan-bionic-py3_11-clang9-build
with:
build-environment: linux-vulkan-bionic-py3.11-clang9
docker-image: ${{ needs.linux-vulkan-bionic-py3_11-clang9-build.outputs.docker-image }}
test-matrix: ${{ needs.linux-vulkan-bionic-py3_11-clang9-build.outputs.test-matrix }}
20 changes: 0 additions & 20 deletions .github/workflows/unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,6 @@ jobs:
echo "Once the jobs are deemed stable enough (% red signal < 5% and TTS < 3h),"
echo " they can graduate and move back to pull or trunk."
linux-vulkan-bionic-py3_11-clang9-build:
name: linux-vulkan-bionic-py3.11-clang9
uses: ./.github/workflows/_linux-build.yml
with:
build-environment: linux-vulkan-bionic-py3.11-clang9
docker-image-name: pytorch-linux-bionic-py3.11-clang9
test-matrix: |
{ include: [
{ config: "default", shard: 1, num_shards: 1, runner: "linux.2xlarge" },
]}
linux-vulkan-bionic-py3_11-clang9-test:
name: linux-vulkan-bionic-py3.11-clang9
uses: ./.github/workflows/_linux-test.yml
needs: linux-vulkan-bionic-py3_11-clang9-build
with:
build-environment: linux-vulkan-bionic-py3.11-clang9
docker-image: ${{ needs.linux-vulkan-bionic-py3_11-clang9-build.outputs.docker-image }}
test-matrix: ${{ needs.linux-vulkan-bionic-py3_11-clang9-build.outputs.test-matrix }}

win-vs2019-cpu-py3-build:
name: win-vs2019-cpu-py3
uses: ./.github/workflows/_win-build.yml
Expand Down

0 comments on commit a0e6ae2

Please sign in to comment.