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

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


The following commit(s) were added to refs/heads/main by this push:
     new c4b42600cb [TARGET] Add target for nvidia rtx 5060ti (#18211)
c4b42600cb is described below

commit c4b42600cbc3cc1f68f1390e33366c97d3d35847
Author: zyl_keep_moving <[email protected]>
AuthorDate: Fri Aug 15 19:09:39 2025 +0800

    [TARGET] Add target for nvidia rtx 5060ti (#18211)
---
 src/target/tag.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/target/tag.cc b/src/target/tag.cc
index 6bc3c07cbf..f305c84e09 100644
--- a/src/target/tag.cc
+++ b/src/target/tag.cc
@@ -271,6 +271,8 @@ TVM_REGISTER_CUDA_TAG("nvidia/nvs-5200m", "sm_21", 49152, 
32768);
 TVM_REGISTER_CUDA_TAG("nvidia/nvs-4200m", "sm_21", 49152, 32768);
 TVM_REGISTER_CUDA_TAG("nvidia/geforce-rtx-4090", "sm_89", 49152, 65536)
     .with_config("l2_cache_size_bytes", 75497472);
+TVM_REGISTER_CUDA_TAG("nvidia/geforce-rtx-5060-ti", "sm_120", 49152, 65536)
+    .with_config("l2_cache_size_bytes", 33554432);
 TVM_REGISTER_CUDA_TAG("nvidia/geforce-rtx-3090-ti", "sm_86", 49152, 65536);
 TVM_REGISTER_CUDA_TAG("nvidia/geforce-rtx-3090", "sm_86", 49152, 65536);
 TVM_REGISTER_CUDA_TAG("nvidia/geforce-rtx-3080-ti", "sm_86", 49152, 65536);

Reply via email to