This is an automated email from the ASF dual-hosted git repository.

guanmingchiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git

commit 57f83b020562aaadb3d0b0747e64997108773a51
Author: Ryan Huang <[email protected]>
AuthorDate: Thu Dec 18 16:32:26 2025 +0800

    [QDP] Enable 3060ti 3090ti cuda build sm86 (#737)
---
 qdp/qdp-kernels/build.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qdp/qdp-kernels/build.rs b/qdp/qdp-kernels/build.rs
index 55d19f683..3b1bd8e8b 100644
--- a/qdp/qdp-kernels/build.rs
+++ b/qdp/qdp-kernels/build.rs
@@ -77,10 +77,10 @@ fn main() {
         .flag("arch=compute_75,code=sm_75")
         .flag("-gencode")
         .flag("arch=compute_80,code=sm_80")
+        .flag("-gencode")
+        .flag("arch=compute_86,code=sm_86")
         // Optional: Add more architectures for production
         // .flag("-gencode")
-        // .flag("arch=compute_86,code=sm_86")
-        // .flag("-gencode")
         // .flag("arch=compute_89,code=sm_89")
         .file("src/amplitude.cu")
         .compile("kernels");

Reply via email to