From 35fa9468041902906b4d5550119aef236c33be2f Mon Sep 17 00:00:00 2001 From: elmattic Date: Thu, 27 Jun 2024 06:12:44 +0000 Subject: [PATCH] Fix build when using system version --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index a8d3202..1b4d125 100644 --- a/build.rs +++ b/build.rs @@ -78,6 +78,7 @@ fn cuda_version_from_build_system() -> (usize, usize) { "11.7" => (11, 7), "11.6" => (11, 6), "11.5" => (11, 5), + "11.4" => (11, 4), v => panic!("Unsupported cuda toolkit version: `{v}`. Please raise a github issue."), } }