File tree 3 files changed +39
-39
lines changed
3 files changed +39
-39
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ binary_common: &binary_common
223
223
wheel_docker_image:
224
224
description: "Wheel only: what docker image to use"
225
225
type: string
226
- default: "pytorch/manylinux-cuda102 "
226
+ default: ""
227
227
conda_docker_image:
228
228
description: "Conda only: what docker image to use"
229
229
type: string
@@ -724,7 +724,7 @@ jobs:
724
724
unittest_linux_cpu:
725
725
<<: *binary_common
726
726
docker:
727
- - image: "pytorch/manylinux-cuda102 "
727
+ - image: "pytorch/manylinux-cpu "
728
728
resource_class: 2xlarge+
729
729
steps:
730
730
- checkout
@@ -941,7 +941,7 @@ jobs:
941
941
cmake_linux_cpu:
942
942
<<: *binary_common
943
943
docker:
944
- - image: "pytorch/manylinux-cuda102 "
944
+ - image: "pytorch/manylinux-cpu "
945
945
resource_class: 2xlarge+
946
946
steps:
947
947
- checkout_merge
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ def upload_doc_job(filter_branch):
130
130
131
131
def get_manylinux_image (cu_version ):
132
132
if cu_version == "cpu" :
133
- return "pytorch/manylinux-cuda102 "
133
+ return "pytorch/manylinux-cpu "
134
134
elif cu_version .startswith ("cu" ):
135
135
cu_suffix = cu_version [len ("cu" ) :]
136
136
return f"pytorch/manylinux-cuda{ cu_suffix } "
You can’t perform that action at this time.
0 commit comments