Skip to content

Commit 98e7976

Browse files
committed
Removing compute_121 as it's not recognised by github's nvcc
1 parent dc964f5 commit 98e7976

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/kvbm-kernels/build.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,7 @@ fn discover_cuda_files() -> Vec<PathBuf> {
186186
fn get_cuda_arch_flags() -> Vec<String> {
187187
let mut flags = Vec::new();
188188

189-
let arch_list =
190-
env::var("CUDA_ARCHS").unwrap_or_else(|_| "80,86,89,90,100,120,121".to_string());
189+
let arch_list = env::var("CUDA_ARCHS").unwrap_or_else(|_| "80,86,89,90,100,120".to_string());
191190

192191
for arch in arch_list.split(',') {
193192
let arch = arch.trim();

0 commit comments

Comments
 (0)