Skip to content

Commit

Permalink
Add linux cuda 11.7 workflows (pytorch#81089)
Browse files Browse the repository at this point in the history
Ref pytorch/builder#1042

CC @atalman
Pull Request resolved: pytorch#81089
Approved by: https://github.com/atalman
  • Loading branch information
ptrblck authored and pytorchmergebot committed Jul 13, 2022
1 parent 31142f5 commit 12c30a8
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,16 @@ case "$image" in
VISION=yes
KATEX=yes
;;
pytorch-linux-bionic-cuda11.7-cudnn8-py3-gcc7)
CUDA_VERSION=11.7.0
CUDNN_VERSION=8
ANACONDA_PYTHON_VERSION=3.7
GCC_VERSION=7
PROTOBUF=yes
DB=yes
VISION=yes
KATEX=yes
;;
pytorch-linux-xenial-py3-clang5-asan)
ANACONDA_PYTHON_VERSION=3.7
CLANG_VERSION=5.0
Expand Down Expand Up @@ -268,6 +278,15 @@ case "$image" in
DB=yes
VISION=yes
;;
pytorch-linux-jammy-cuda11.7-cudnn8-py3.8-clang12)
ANACONDA_PYTHON_VERSION=3.8
CUDA_VERSION=11.7
CUDNN_VERSION=8
CLANG_VERSION=12
PROTOBUF=yes
DB=yes
VISION=yes
;;
*)
# Catch-all for builds that are not hardcoded.
PROTOBUF=yes
Expand Down
5 changes: 5 additions & 0 deletions .circleci/scripts/windows_cuda_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ case ${CUDA_VERSION} in
cuda_installer_name="cuda_11.6.0_511.23_windows"
cuda_install_packages="thrust_11.6 nvcc_11.6 cuobjdump_11.6 nvprune_11.6 nvprof_11.6 cupti_11.6 cublas_11.6 cublas_dev_11.6 cudart_11.6 cufft_11.6 cufft_dev_11.6 curand_11.6 curand_dev_11.6 cusolver_11.6 cusolver_dev_11.6 cusparse_11.6 cusparse_dev_11.6 npp_11.6 npp_dev_11.6 nvrtc_11.6 nvrtc_dev_11.6 nvml_dev_11.6"
;;
11.7)
cuda_installer_name="cuda_11.7.0_516.01_windows"
cuda_install_packages="thrust_11.7 nvcc_11.7 cuobjdump_11.7 nvprune_11.7 nvprof_11.7 cupti_11.7 cublas_11.7 cublas_dev_11.7 cudart_11.7 cufft_11.7 cufft_dev_11.7 curand_11.7 curand_dev_11.7 cusolver_11.7 cusolver_dev_11.7 cusparse_11.7 cusparse_dev_11.7 npp_11.7 npp_dev_11.7 nvrtc_11.7 nvrtc_dev_11.7 nvml_dev_11.7"
;;

*)
echo "CUDA_VERSION $CUDA_VERSION is not supported yet"
exit 1
Expand Down
4 changes: 4 additions & 0 deletions .circleci/scripts/windows_cudnn_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ case ${CUDA_VERSION} in
# Use cudnn8.3 with hard-coded cuda11.5 version
cudnn_file_name="cudnn-windows-x86_64-8.3.2.44_cuda11.5-archive"
;;
11.7)
# Use cudnn8.3 with hard-coded cuda11.5 version
cudnn_file_name="cudnn-windows-x86_64-8.3.2.44_cuda11.5-archive"
;;
*)
echo "CUDA_VERSION: ${CUDA_VERSION} not supported yet"
exit 1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ jobs:
- docker-image-name: pytorch-linux-bionic-cuda10.2-cudnn7-py3.9-gcc7
- docker-image-name: pytorch-linux-bionic-cuda11.3-cudnn8-py3-clang9
- docker-image-name: pytorch-linux-bionic-cuda11.6-cudnn8-py3-gcc7
- docker-image-name: pytorch-linux-bionic-cuda11.7-cudnn8-py3-gcc7
- docker-image-name: pytorch-linux-bionic-py3.7-clang9
- docker-image-name: pytorch-linux-focal-rocm5.0-py3.7
- docker-image-name: pytorch-linux-focal-rocm5.1-py3.7
- docker-image-name: pytorch-linux-jammy-cuda11.6-cudnn8-py3.8-clang12
- docker-image-name: pytorch-linux-jammy-cuda11.7-cudnn8-py3.8-clang12
- docker-image-name: pytorch-linux-xenial-cuda10.2-cudnn7-py3-gcc7
- docker-image-name: pytorch-linux-xenial-cuda11.3-cudnn8-py3-gcc7
- docker-image-name: pytorch-linux-xenial-py3-clang5-android-ndk-r19c
Expand Down

0 comments on commit 12c30a8

Please sign in to comment.