Adding wheels with py3.10 (#71419)

Summary:
Adding wheels with py3.10

Pull Request resolved: https://github.com/pytorch/pytorch/pull/71419

Reviewed By: janeyx99

Differential Revision: D33657770

Pulled By: atalman

fbshipit-source-id: 5d24f1771991ff07fbfd92d04d3d5211cf53084c
(cherry picked from commit bf2f2624e1)
This commit is contained in:
Andrey Talman 2022-01-19 08:34:15 -08:00 committed by PyTorch MergeBot
parent b56ba296b1
commit 7ed2a43d26
4 changed files with 5884 additions and 1247 deletions

View File

@ -16,7 +16,7 @@ from typing import Dict, List, Tuple
CUDA_ARCHES = ["10.2", "11.1", "11.3", "11.5"] CUDA_ARCHES = ["10.2", "11.1", "11.3", "11.5"]
ROCM_ARCHES = ["4.2", "4.3.1"] ROCM_ARCHES = ["4.3.1", "4.5.2"]
def arch_type(arch_version: str) -> str: def arch_type(arch_version: str) -> str:
@ -65,6 +65,7 @@ FULL_PYTHON_VERSIONS = [
"3.7", "3.7",
"3.8", "3.8",
"3.9", "3.9",
"3.10"
] ]

View File

@ -22,7 +22,7 @@ name: !{{ build_environment }}
LIBTORCH_VARIANT: !{{ config["libtorch_variant"] }} LIBTORCH_VARIANT: !{{ config["libtorch_variant"] }}
DESIRED_DEVTOOLSET: !{{ config["devtoolset"] }} DESIRED_DEVTOOLSET: !{{ config["devtoolset"] }}
{%- else %} {%- else %}
DESIRED_PYTHON: !{{ config["python_version"] }} DESIRED_PYTHON: "!{{ config["python_version"] }}"
{%- endif %} {%- endif %}
{%- endmacro %} {%- endmacro %}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff