Skip to content

Commit

Permalink
Update on "Fuzzing benchmark for FFT operators"
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
peterbell10 committed Nov 16, 2020
2 parents 28cab9c + d47770f commit c547000
Show file tree
Hide file tree
Showing 448 changed files with 13,316 additions and 8,213 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
1 change: 1 addition & 0 deletions .circleci/cimodel/data/dimensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
"3.6",
"3.7",
"3.8",
"3.9"
]
2 changes: 1 addition & 1 deletion .circleci/cimodel/data/pytorch_build_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
]),
]),
]),
("11.0", [
("11.1", [
("3.8", [
X(True),
("libtorch", [
Expand Down
1 change: 1 addition & 0 deletions .circleci/cimodel/data/simple/docker_definitions.py
Original file line number Diff line number Diff line change
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 c547000

Please sign in to comment.