Skip to content

Commit

Permalink
Update on "[Docs] Minor doc fixes for init_process_group"
Browse files Browse the repository at this point in the history
Minor Update to the init_process_group docs.

Differential Revision: [D24633432](https://our.internmc.facebook.com/intern/diff/D24633432/)

[ghstack-poisoned]
  • Loading branch information
osalpekar committed Nov 11, 2020
2 parents 06f528f + 2204374 commit 15549e7
Show file tree
Hide file tree
Showing 127 changed files with 3,914 additions and 2,233 deletions.
16 changes: 12 additions & 4 deletions .circleci/cimodel/data/binary_build_data.py
Expand Up @@ -36,18 +36,26 @@ def get_processor_arch_name(gpu_version):
"3.6m",
"3.7m",
"3.8m",
"3.9m"
],
conda=dimensions.STANDARD_PYTHON_VERSIONS,
libtorch=[
"3.7m",
],
)

# TODO: There's an issue with current Python 3.9 builds that only occurs during
# windows builds, let's just not build 3.9 for windows and figure out how
# to resolve afterwards
PYTHON_VERSIONS_NO_39 = [
v for v in dimensions.STANDARD_PYTHON_VERSIONS if v not in ['3.9']
]

CONFIG_TREE_DATA = OrderedDict(
linux=(dimensions.GPU_VERSIONS, LINUX_PACKAGE_VARIANTS),
macos=([None], OrderedDict(
wheel=dimensions.STANDARD_PYTHON_VERSIONS,
conda=dimensions.STANDARD_PYTHON_VERSIONS,
wheel=PYTHON_VERSIONS_NO_39,
conda=PYTHON_VERSIONS_NO_39,
libtorch=[
"3.7",
],
Expand All @@ -56,8 +64,8 @@ def get_processor_arch_name(gpu_version):
windows=(
[v for v in dimensions.GPU_VERSIONS if v not in ['cuda92'] + dimensions.ROCM_VERSION_LABELS],
OrderedDict(
wheel=dimensions.STANDARD_PYTHON_VERSIONS,
conda=dimensions.STANDARD_PYTHON_VERSIONS,
wheel=PYTHON_VERSIONS_NO_39,
conda=PYTHON_VERSIONS_NO_39,
libtorch=[
"3.7",
],
Expand Down
1 change: 1 addition & 0 deletions .circleci/cimodel/data/dimensions.py
Expand Up @@ -20,4 +20,5 @@
"3.6",
"3.7",
"3.8",
"3.9"
]
1 change: 1 addition & 0 deletions .circleci/cimodel/data/simple/docker_definitions.py
Expand Up @@ -31,6 +31,7 @@
"pytorch-linux-xenial-py3.6-gcc7",
"pytorch-linux-bionic-rocm3.7-py3.6",
"pytorch-linux-bionic-rocm3.8-py3.6",
"pytorch-linux-bionic-rocm3.9-py3.6",
]


Expand Down

0 comments on commit 15549e7

Please sign in to comment.