We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9721485 commit 5b9e9d9Copy full SHA for 5b9e9d9
crates/find_cuda_helper/src/lib.rs
@@ -42,7 +42,7 @@ pub fn find_cuda_root() -> Option<PathBuf> {
42
43
// If it wasn't specified by env var, try the default installation paths
44
#[cfg(not(target_os = "windows"))]
45
- let default_paths = ["/usr/local/cuda", "/opt/cuda"];
+ let default_paths = ["/usr/lib/cuda", "/usr/local/cuda", "/opt/cuda"];
46
#[cfg(target_os = "windows")]
47
let default_paths = ["C:/CUDA"]; // TODO (AL): what's the actual path here?
48
0 commit comments