## # This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild # # Author: Stephane Thiell ## easyblock = 'Tarball' name = 'cuDNN' version = '5.1' cuda_version = '8.0.44' versionsuffix = '-CUDA-%s' % cuda_version homepage = 'https://developer.nvidia.com/cudnn' description = """The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks.""" toolchain = {'name': 'system', 'version': ''} # Nvidia developer registration required. # Download link: https://developer.nvidia.com/rdp/cudnn-download sources = ['%(namelower)s-8.0-linux-x64-v%(version)s.tgz'] dependencies = [('CUDA', cuda_version)] # checksums = [ # '099ca6a9b21b35e32f3408eff2a1c06d', # cudnn-8.0-linux-x64-v5.1.tgz #] sanity_check_paths = { 'files': ['include/cudnn.h', 'lib64/libcudnn_static.a'], 'dirs': ['include', 'lib64'], } moduleclass = 'numlib'