mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 02:12:12 +01:00
31 lines
771 B
Plaintext
31 lines
771 B
Plaintext
easyblock = 'Tarball'
|
|
|
|
name = 'cuDNN'
|
|
version = '7.0.5'
|
|
cuda_version = '9.0.176'
|
|
|
|
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 = SYSTEM
|
|
|
|
# Nvidia developer registration required.
|
|
# Download link: https://developer.nvidia.com/rdp/cudnn-download
|
|
sources = ['cudnn-9.0-linux-x64-v7.tar.gz']
|
|
|
|
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'
|