Skip to content

Commit 0113b00

Browse files
authored
Move cirecleci cu102 jobs to cpu (#6650)
1 parent a35be97 commit 0113b00

File tree

3 files changed

+39
-39
lines changed

3 files changed

+39
-39
lines changed

.circleci/config.yml

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/config.yml.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ binary_common: &binary_common
223223
wheel_docker_image:
224224
description: "Wheel only: what docker image to use"
225225
type: string
226-
default: "pytorch/manylinux-cuda102"
226+
default: ""
227227
conda_docker_image:
228228
description: "Conda only: what docker image to use"
229229
type: string
@@ -724,7 +724,7 @@ jobs:
724724
unittest_linux_cpu:
725725
<<: *binary_common
726726
docker:
727-
- image: "pytorch/manylinux-cuda102"
727+
- image: "pytorch/manylinux-cpu"
728728
resource_class: 2xlarge+
729729
steps:
730730
- checkout
@@ -941,7 +941,7 @@ jobs:
941941
cmake_linux_cpu:
942942
<<: *binary_common
943943
docker:
944-
- image: "pytorch/manylinux-cuda102"
944+
- image: "pytorch/manylinux-cpu"
945945
resource_class: 2xlarge+
946946
steps:
947947
- checkout_merge

.circleci/regenerate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def upload_doc_job(filter_branch):
130130

131131
def get_manylinux_image(cu_version):
132132
if cu_version == "cpu":
133-
return "pytorch/manylinux-cuda102"
133+
return "pytorch/manylinux-cpu"
134134
elif cu_version.startswith("cu"):
135135
cu_suffix = cu_version[len("cu") :]
136136
return f"pytorch/manylinux-cuda{cu_suffix}"

0 commit comments

Comments
 (0)