Skip to content

Commit

Permalink
Update on "Fix auto exponent issue for torch.pow"
Browse files Browse the repository at this point in the history
Fixes #46936


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

[ghstack-poisoned]
  • Loading branch information
anjali411 committed Nov 11, 2020
2 parents bdc13c4 + a1db5b0 commit 207a8de
Show file tree
Hide file tree
Showing 402 changed files with 23,298 additions and 6,322 deletions.
16 changes: 12 additions & 4 deletions .circleci/cimodel/data/binary_build_data.py
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion .circleci/cimodel/data/dimensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
]

ROCM_VERSIONS = [
"3.7",
"3.8",
"3.9",
]
Expand All @@ -21,4 +20,5 @@
"3.6",
"3.7",
"3.8",
"3.9"
]
3 changes: 1 addition & 2 deletions .circleci/cimodel/data/simple/docker_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"pytorch-linux-bionic-py3.6-clang9",
"pytorch-linux-bionic-cuda10.2-cudnn7-py3.6-clang9",
"pytorch-linux-bionic-py3.8-gcc9",
"pytorch-linux-bionic-rocm3.5.1-py3.6",
"pytorch-linux-xenial-cuda10-cudnn7-py3-gcc7",
"pytorch-linux-xenial-cuda10.1-cudnn7-py3-gcc7",
"pytorch-linux-xenial-cuda10.2-cudnn7-py3-gcc7",
Expand All @@ -27,12 +26,12 @@
"pytorch-linux-xenial-py3-clang7-onnx",
"pytorch-linux-xenial-py3.8",
"pytorch-linux-xenial-py3.6-clang7",
"pytorch-linux-xenial-py3.6-gcc4.8",
"pytorch-linux-xenial-py3.6-gcc5.4", # this one is used in doc builds
"pytorch-linux-xenial-py3.6-gcc7.2",
"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 207a8de

Please sign in to comment.