mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 03:42:50 +08:00
No more cuda 10.0 builds
Summary: Latest pytorch doesn't support cuda 10.0 and now its pytorch/conda-cuda docker image doesn't include it either. Here we remove the pytorch3d builds which use cuda 10.0. Reviewed By: nikhilaravi Differential Revision: D22999392 fbshipit-source-id: c834477fc7c812c2d0594dccd9e9471e33a4ec5e
This commit is contained in:
parent
5d9444307f
commit
c122ccb13c
@ -207,10 +207,10 @@ workflows:
|
|||||||
- main
|
- main
|
||||||
{{workflows()}}
|
{{workflows()}}
|
||||||
- binary_linux_conda_cuda:
|
- binary_linux_conda_cuda:
|
||||||
name: testrun_conda_cuda_py37_cu100_pyt14
|
name: testrun_conda_cuda_py37_cu101_pyt14
|
||||||
python_version: "3.7"
|
python_version: "3.7"
|
||||||
pytorch_version: "1.4"
|
pytorch_version: "1.4"
|
||||||
cu_version: "cu100"
|
cu_version: "cu101"
|
||||||
- binary_linux_conda_cuda:
|
- binary_linux_conda_cuda:
|
||||||
name: testrun_conda_cuda_py37_cu102_pyt160
|
name: testrun_conda_cuda_py37_cu102_pyt160
|
||||||
python_version: "3.7"
|
python_version: "3.7"
|
||||||
|
@ -210,11 +210,6 @@ workflows:
|
|||||||
name: linux_conda_py36_cu92_pyt14
|
name: linux_conda_py36_cu92_pyt14
|
||||||
python_version: '3.6'
|
python_version: '3.6'
|
||||||
pytorch_version: '1.4'
|
pytorch_version: '1.4'
|
||||||
- binary_linux_conda:
|
|
||||||
cu_version: cu100
|
|
||||||
name: linux_conda_py36_cu100_pyt14
|
|
||||||
python_version: '3.6'
|
|
||||||
pytorch_version: '1.4'
|
|
||||||
- binary_linux_conda:
|
- binary_linux_conda:
|
||||||
cu_version: cu101
|
cu_version: cu101
|
||||||
name: linux_conda_py36_cu101_pyt14
|
name: linux_conda_py36_cu101_pyt14
|
||||||
@ -270,11 +265,6 @@ workflows:
|
|||||||
name: linux_conda_py37_cu92_pyt14
|
name: linux_conda_py37_cu92_pyt14
|
||||||
python_version: '3.7'
|
python_version: '3.7'
|
||||||
pytorch_version: '1.4'
|
pytorch_version: '1.4'
|
||||||
- binary_linux_conda:
|
|
||||||
cu_version: cu100
|
|
||||||
name: linux_conda_py37_cu100_pyt14
|
|
||||||
python_version: '3.7'
|
|
||||||
pytorch_version: '1.4'
|
|
||||||
- binary_linux_conda:
|
- binary_linux_conda:
|
||||||
cu_version: cu101
|
cu_version: cu101
|
||||||
name: linux_conda_py37_cu101_pyt14
|
name: linux_conda_py37_cu101_pyt14
|
||||||
@ -330,11 +320,6 @@ workflows:
|
|||||||
name: linux_conda_py38_cu92_pyt14
|
name: linux_conda_py38_cu92_pyt14
|
||||||
python_version: '3.8'
|
python_version: '3.8'
|
||||||
pytorch_version: '1.4'
|
pytorch_version: '1.4'
|
||||||
- binary_linux_conda:
|
|
||||||
cu_version: cu100
|
|
||||||
name: linux_conda_py38_cu100_pyt14
|
|
||||||
python_version: '3.8'
|
|
||||||
pytorch_version: '1.4'
|
|
||||||
- binary_linux_conda:
|
- binary_linux_conda:
|
||||||
cu_version: cu101
|
cu_version: cu101
|
||||||
name: linux_conda_py38_cu101_pyt14
|
name: linux_conda_py38_cu101_pyt14
|
||||||
@ -401,10 +386,10 @@ workflows:
|
|||||||
python_version: '3.8'
|
python_version: '3.8'
|
||||||
pytorch_version: 1.6.0
|
pytorch_version: 1.6.0
|
||||||
- binary_linux_conda_cuda:
|
- binary_linux_conda_cuda:
|
||||||
name: testrun_conda_cuda_py37_cu100_pyt14
|
name: testrun_conda_cuda_py37_cu101_pyt14
|
||||||
python_version: "3.7"
|
python_version: "3.7"
|
||||||
pytorch_version: "1.4"
|
pytorch_version: "1.4"
|
||||||
cu_version: "cu100"
|
cu_version: "cu101"
|
||||||
- binary_linux_conda_cuda:
|
- binary_linux_conda_cuda:
|
||||||
name: testrun_conda_cuda_py37_cu102_pyt160
|
name: testrun_conda_cuda_py37_cu102_pyt160
|
||||||
python_version: "3.7"
|
python_version: "3.7"
|
||||||
|
@ -13,8 +13,9 @@ import yaml
|
|||||||
|
|
||||||
# The CUDA versions which have pytorch conda packages available for linux for each
|
# The CUDA versions which have pytorch conda packages available for linux for each
|
||||||
# version of pytorch.
|
# version of pytorch.
|
||||||
|
# Pytorch 1.4 also supports cuda 10.0 but we no longer build for cuda 10.0 at all.
|
||||||
CONDA_CUDA_VERSIONS = {
|
CONDA_CUDA_VERSIONS = {
|
||||||
"1.4": ["cu92", "cu100", "cu101"],
|
"1.4": ["cu92", "cu101"],
|
||||||
"1.5.0": ["cu92", "cu101", "cu102"],
|
"1.5.0": ["cu92", "cu101", "cu102"],
|
||||||
"1.5.1": ["cu92", "cu101", "cu102"],
|
"1.5.1": ["cu92", "cu101", "cu102"],
|
||||||
"1.6.0": ["cu92", "cu101", "cu102"],
|
"1.6.0": ["cu92", "cu101", "cu102"],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user