cudnn: adjust version dependency on CUDA (#31763)

This commit is contained in:
Melven Roehrig-Zoellner 2022-08-07 17:27:51 +02:00 committed by GitHub
parent 86be4666fc
commit 67154a1088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -250,9 +250,11 @@ class Cudnn(Package):
if pkg: if pkg:
version(long_ver, sha256=pkg) version(long_ver, sha256=pkg)
# Add constraints matching CUDA version to cuDNN version # Add constraints matching CUDA version to cuDNN version
cuda_req = "cuda@{0}.0:{0}".format(cuda_ver) # cuDNN builds for CUDA 11.x are compatible with all CUDA 11.x:
cudnn_ver_req = "@{0}".format(long_ver) # https://docs.nvidia.com/deeplearning/cudnn/support-matrix/index.html#fntarg_2
depends_on(cuda_req, when=cudnn_ver_req) if Version(cuda_ver) >= Version("11"):
cuda_ver = Version(cuda_ver).up_to(1)
depends_on("cuda@{}".format(cuda_ver), when="@{}".format(long_ver))
def url_for_version(self, version): def url_for_version(self, version):
# Get the system and machine arch for building the file path # Get the system and machine arch for building the file path