This is an automated email from the ASF dual-hosted git repository.
guanmingchiu pushed a commit to branch dev-qdp
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/dev-qdp by this push:
new 6992fc51d [QDP] Enable 3060ti 3090ti cuda build sm86 (#737)
6992fc51d is described below
commit 6992fc51dba4869c2bd9dfeb842d20b4176d7247
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");