aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordeshevoy <deshevoy@yandex-team.com>2024-09-05 00:54:40 +0300
committerdeshevoy <deshevoy@yandex-team.com>2024-09-05 01:03:29 +0300
commit97e9e96def965fe4eff2cd3090873956fb6e1a22 (patch)
tree42dbd9c412a0cab17fde84dff257a4233a57829c
parent3606f14bef45ea2e5608de3d4ca4a6840ca16b4d (diff)
downloadydb-97e9e96def965fe4eff2cd3090873956fb6e1a22.tar.gz
[build] cuda: Add CUDA 11.4.19 for aarch64 (target only)
To be used on Jetson modules with JetPack 5 7940a3e72b812dd159edf1ec4d84092c5a8e25d1
-rwxr-xr-xbuild/ymake_conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index 7ae6780bf9..ee5731c50d 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -2451,7 +2451,7 @@ class Cuda(object):
if self.cuda_version.value in ('11.4', '11.8', '12.1', '12.2'):
return True
- elif self.cuda_version.value in ('10.2',) and target.is_linux_armv8:
+ elif self.cuda_version.value in ('10.2', '11.4.19') and target.is_linux_armv8:
return True
else:
raise ConfigureError('CUDA version {} is not supported in Arcadia'.format(self.cuda_version.value))