From eb9956c627dad8ad987733b0fcb12a87fe254a56 Mon Sep 17 00:00:00 2001 From: atalman Date: Mon, 3 Apr 2023 07:06:55 -0700 Subject: [PATCH] Fix typo (bracket) in DEPS_LIST setting --- conda/pytorch-nightly/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/pytorch-nightly/build.sh b/conda/pytorch-nightly/build.sh index 03c9a6238..5d32a07a3 100755 --- a/conda/pytorch-nightly/build.sh +++ b/conda/pytorch-nightly/build.sh @@ -74,7 +74,7 @@ if [[ -n "$build_with_cuda" ]]; then TORCH_CUDA_ARCH_LIST="$TORCH_CUDA_ARCH_LIST;9.0" # for cuda 12.1 we use cudnn 8.8 and include all dynamic loading libraries export USE_STATIC_CUDNN=0 - DEPS_LIST=(/usr/local/cuda/lib64/libcudnn*.so.8 /usr/local/cuda-12.1/extras/CUPTI/lib64/libcupti.so.12 + DEPS_LIST=(/usr/local/cuda/lib64/libcudnn*.so.8 /usr/local/cuda-12.1/extras/CUPTI/lib64/libcupti.so.12) fi if [[ -n "$OVERRIDE_TORCH_CUDA_ARCH_LIST" ]]; then TORCH_CUDA_ARCH_LIST="$OVERRIDE_TORCH_CUDA_ARCH_LIST"