aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-02-14 17:41:34 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-02-14 17:41:34 +0300
commit2c32620bb8ba5e6bfc416c5177785b623b8833d2 (patch)
treef1f9783cd9415023585ffebdb039df2c0e5d34b3
parent44db08c3bf5673e13660f0443ed489eb1763b021 (diff)
downloadydb-2c32620bb8ba5e6bfc416c5177785b623b8833d2.tar.gz
intermediate changes
ref:85d636f21c94bdb04c4f667c42df7186a7e6be51
-rw-r--r--build/platform/cuda/ya.make2
-rwxr-xr-xbuild/ymake_conf.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/build/platform/cuda/ya.make b/build/platform/cuda/ya.make
index 7ce728ced7..2e30a867a7 100644
--- a/build/platform/cuda/ya.make
+++ b/build/platform/cuda/ya.make
@@ -15,6 +15,8 @@ IF (USE_ARCADIA_CUDA)
DECLARE_EXTERNAL_RESOURCE(CUDA sbr:2410761119) # CUDA Toolkit 11.4.2 for Linux x86-64
ELSEIF (CUDA_VERSION == "11.3")
DECLARE_EXTERNAL_RESOURCE(CUDA sbr:2213063565) # CUDA Toolkit 11.3.1 for Linux x86-64
+ ELSEIF (CUDA_VERSION == "11.0")
+ DECLARE_EXTERNAL_RESOURCE(CUDA sbr:1647896014) # CUDA Toolkit 11.0.2 for Linux x86-64
ELSEIF (CUDA_VERSION == "10.1")
DECLARE_EXTERNAL_RESOURCE(CUDA sbr:2077988857) # CUDA Toolkit 10.1.168 for Linux x86-64
ELSE()
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index eca3af996a..1689556546 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -3093,7 +3093,7 @@ class Cuda(object):
if self.cuda_version.value in ('8.0', '9.0', '9.1', '9.2', '10.0'):
raise ConfigureError('CUDA versions 8.x, 9.x and 10.0 are no longer supported.\nSee DEVTOOLS-7108.')
- if self.cuda_version.value in ('10.1', '11.3', '11.4'):
+ if self.cuda_version.value in ('10.1', '11.0', '11.3', '11.4'):
return True
return False