We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb00cd5 commit 9bb61a4Copy full SHA for 9bb61a4
1 file changed
crates/cudnn-sys/build/cudnn_sdk.rs
@@ -105,8 +105,11 @@ impl CudnnSdk {
105
];
106
107
#[cfg(not(target_os = "windows"))]
108
- let mut cudnn_paths: Vec<path::PathBuf> =
109
- CUDNN_DEFAULT_PATHS.iter().map(Path::new).map(path::PathBuf::from).collect();
+ let mut cudnn_paths: Vec<path::PathBuf> = CUDNN_DEFAULT_PATHS
+ .iter()
110
+ .map(Path::new)
111
+ .map(path::PathBuf::from)
112
+ .collect();
113
114
#[cfg(target_os = "windows")]
115
let mut cudnn_paths: Vec<path::PathBuf> = {
0 commit comments