diff options
author | Martin Stefcek <35243812+Cifko@users.noreply.github.com> | 2024-05-16 14:32:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 14:32:50 +0200 |
commit | bdaa34216a2bb3527b6e248030f434561f9cf620 (patch) | |
tree | a17855c972e8a4e14f3973e7d21357a7e5126d34 /README.md | |
parent | cc80e065e575bd1c5140b2f1be065aafa55f2aea (diff) | |
download | candle-bdaa34216a2bb3527b6e248030f434561f9cf620.tar.gz candle-bdaa34216a2bb3527b6e248030f434561f9cf620.tar.bz2 candle-bdaa34216a2bb3527b6e248030f434561f9cf620.zip |
chore: add fix for windows cudarc into the readme (#2189)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -408,3 +408,10 @@ This may be caused by the models being loaded from `/mnt/c`, more details on You can set `RUST_BACKTRACE=1` to be provided with backtraces when a candle error is generated. + +#### CudaRC error + +If you encounter an error like this one `called `Result::unwrap()` on an `Err` value: LoadLibraryExW { source: Os { code: 126, kind: Uncategorized, message: "The specified module could not be found." } }` on windows. To fix copy and rename these 3 files (make sure they are in path). The paths depend on your cuda version. +`c:\Windows\System32\nvcuda.dll` -> `cuda.dll` +`c:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4\bin\cublas64_12.dll` -> `cublas.dll` +`c:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4\bin\curand64_10.dll` -> `curand.dll` |