From b3983d3274b92b6f96efca894a56b1cb5422b621 Mon Sep 17 00:00:00 2001 From: yum Date: Mon, 4 Mar 2024 15:50:16 -0800 Subject: Finish fixing build break CUDNN now pulls from dropbox instead of google drive. This has the added benefit of being about 10-20x faster (assuming you have fast internet). --- GUI/package.ps1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'GUI') diff --git a/GUI/package.ps1 b/GUI/package.ps1 index f91af27..a9be563 100644 --- a/GUI/package.ps1 +++ b/GUI/package.ps1 @@ -99,20 +99,20 @@ if (-Not (Test-Path $nvidia_dir)) { # NVIDIA locks these files behind a fucking login making it a massive # pain in the dick for end users to download, so I rehosted them. # TODO check hashes. - echo "Fetching NVIDIA dll 1/4 (600MB)" - $CUDNN_1_URL = "https://www.dropbox.com/scl/fi/7vgnqz732lmrdkbktc0tm/cublas64_11.dll?rlkey=ju4fjpf8v9aoopdeqddfkcrfj&dl=0" + echo "Fetching NVIDIA dll 1/4 (90MB)" + $CUDNN_1_URL = "https://www.dropbox.com/scl/fi/7vgnqz732lmrdkbktc0tm/cublas64_11.dll?rlkey=ju4fjpf8v9aoopdeqddfkcrfj&dl=1" Invoke-WebRequest $CUDNN_1_URL -OutFile "cublas64_11.dll" - echo "Fetching NVIDIA dll 2/4 (80MB)" - $CUDNN_2_URL = "https://www.dropbox.com/scl/fi/xgz2rbp5gxy1v6o0t5e4r/cublasLt64_11.dll?rlkey=l6uk24q82anmjtlr39m8pbftb&dl=0" + echo "Fetching NVIDIA dll 2/4 (160MB)" + $CUDNN_2_URL = "https://www.dropbox.com/scl/fi/xgz2rbp5gxy1v6o0t5e4r/cublasLt64_11.dll?rlkey=l6uk24q82anmjtlr39m8pbftb&dl=1" Invoke-WebRequest $CUDNN_2_URL -OutFile "cublasLt64_11.dll" - echo "Fetching NVIDIA dll 3/4 (80MB)" - $CUDNN_3_URL = "https://www.dropbox.com/scl/fi/ffy0i5l5asrfkiesr3t1u/cudnn_cnn_infer64_8.dll?rlkey=t2v0v6y78tq2h2i5y0bmm7n0z&dl=0" + echo "Fetching NVIDIA dll 3/4 (600MB)" + $CUDNN_3_URL = "https://www.dropbox.com/scl/fi/ffy0i5l5asrfkiesr3t1u/cudnn_cnn_infer64_8.dll?rlkey=t2v0v6y78tq2h2i5y0bmm7n0z&dl=1" Invoke-WebRequest $CUDNN_3_URL -OutFile "cudnn_cnn_infer64_8.dll" - echo "Fetching NVIDIA dll 4/4 (150MB)" - $CUDNN_4_URL = "https://www.dropbox.com/scl/fi/dd1t62wc5gtz5bmhji01h/cudnn_ops_infer64_8.dll?rlkey=b11q8h3f97pxsamak04z4f84d&dl=0" + echo "Fetching NVIDIA dll 4/4 (90MB)" + $CUDNN_4_URL = "https://www.dropbox.com/scl/fi/dd1t62wc5gtz5bmhji01h/cudnn_ops_infer64_8.dll?rlkey=b11q8h3f97pxsamak04z4f84d&dl=1" Invoke-WebRequest $CUDNN_4_URL -OutFile "cudnn_ops_infer64_8.dll" popd > $null -- cgit v1.2.3