Merge branch 'it4i-anselm'

This commit is contained in:
Josef Hrabal 2019-03-15 10:19:57 +01:00
commit 2bc0674ee2
2 changed files with 46 additions and 0 deletions

18
c/CUDA/CUDA-10.0.130.eb Normal file
View File

@ -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'

View File

@ -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'