diff --git a/c/CUDA/CUDA-10.0.130.eb b/c/CUDA/CUDA-10.0.130.eb new file mode 100644 index 00000000..9f6ff478 --- /dev/null +++ b/c/CUDA/CUDA-10.0.130.eb @@ -0,0 +1,18 @@ +# IT4Innovations 2019 + +name = 'CUDA' +version = '10.0.130' + +homepage = 'https://developer.nvidia.com/cuda-toolkit' +description = """CUDA (formerly Compute Unified Device Architecture) is a parallel + computing platform and programming model created by NVIDIA and implemented by the + graphics processing units (GPUs) that they produce. CUDA gives developers access + to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs.""" + +toolchain = {'name': 'dummy', 'version': 'dummy'} + +source_urls = ['https://developer.nvidia.com/compute/%(namelower)s/%(version_major_minor)s/Prod/local_installers/'] +sources = ['%(namelower)s_%(version)s_410.48_linux'] +checksums = ['92351f0e4346694d0fcb4ea1539856c9eb82060c25654463bfd8574ec35ee39a'] + +moduleclass = 'system' diff --git a/c/cuDNN/cuDNN-7.5-CUDA-10.0.130.eb b/c/cuDNN/cuDNN-7.5-CUDA-10.0.130.eb new file mode 100644 index 00000000..5572a79f --- /dev/null +++ b/c/cuDNN/cuDNN-7.5-CUDA-10.0.130.eb @@ -0,0 +1,28 @@ +# IT4Innovations 2019 + +easyblock = 'Tarball' + +name = 'cuDNN' +version = '7.5.0.56' +cuda_version = '10.0.130' + +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': 'dummy', 'version': ''} + +# Nvidia developer registration required. +# Download link: https://developer.nvidia.com/rdp/cudnn-download +sources = ['cudnn-10.0-linux-x64-v7.5.0.56.tgz'] + +dependencies = [('CUDA', cuda_version)] + +sanity_check_paths = { + 'files': ['include/cudnn.h', 'lib64/libcudnn_static.a'], + 'dirs': ['include', 'lib64'], +} + +moduleclass = 'numlib'