summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornechda <[email protected]>2025-05-13 19:58:33 +0300
committernechda <[email protected]>2025-05-13 20:16:00 +0300
commitfe3406147abc7bfd5a42610da6cc83f5a7774b0e (patch)
treeb2e745f35dba8422bb165eb32b77a4825c7871fb
parent3d1717e3fc92241ae5cfcbb4c0cf3c827cb59457 (diff)
Enable cudnn-9 by default
commit_hash:5e24e4e6e08887a021deabf129c0358a0dccd56e
-rw-r--r--build/ymake.core.conf2
-rwxr-xr-xbuild/ymake_conf.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf
index 0b61e248f09..53907956201 100644
--- a/build/ymake.core.conf
+++ b/build/ymake.core.conf
@@ -5688,7 +5688,7 @@ when ($CUDA11) {
when ($CUDA12) {
CUDA_VERSION=12.6
- CUDNN_VERSION=8.6.0
+ CUDNN_VERSION=9.0.0
TENSORRT_VERSION=10
CUDA_ARCHITECTURES=
NVCC_STD_VER=20
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index b7ab3bf3588..7737d31184e 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -2532,7 +2532,7 @@ class CuDNN(object):
return self.cudnn_version.value in ('7.6.5', '8.0.5', '8.6.0', '8.9.7', '9.0.0')
def auto_cudnn_version(self):
- return '8.6.0'
+ return '9.0.0'
def print_(self):
if self.cuda.have_cuda.value and self.have_cudnn():