-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cudnn_instructions.js
14 lines (14 loc) · 1.32 KB
/
cudnn_instructions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
console.log("cuDNN is not installed. Please follow these steps to download and install cuDNN 8.9.6 manually:");
console.log("1. Go to the NVIDIA cuDNN download page: https://developer.nvidia.com/rdp/cudnn-download");
console.log("2. Log in with your NVIDIA Developer account.");
console.log("3. Download the file 'cudnn-windows-x86_64-8.9.6.50_cuda11-archive.zip'.");
console.log("4. Extract the contents of the downloaded zip file.");
console.log("5. Copy the following files to the CUDA installation directory:");
console.log(" - Copy 'cudnn64_8.dll' to 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\bin'");
console.log(" - Copy 'cudnn.h' to 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\include'");
console.log(" - Copy 'cudnn.lib' to 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\lib\\x64'");
console.log("6. Press any key to continue once you have moved and unzipped the folder.");
console.log("Note: If you encounter issues, you might need to manually add the following paths to your system PATH:");
console.log(" - 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\bin'");
console.log(" - 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\libnvvp'");
console.log(" - 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v11.8\\lib'");