mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-10 17:02:11 +01:00

new file: c/CRYSTAL/CRYSTAL-23-intel-2021b-1.0.1-PdistribOMP.eb new file: c/cuDNN/cuDNN-9.5.0.50-CUDA-12.6.0.eb new file: c/cuDNN/cuDNN-9.7.1.26-CUDA-12.8.0.eb new file: d/DFTB+/DFTB+-24.1-foss-2023a-CUDA-12.1.1-PL.eb new file: d/DFTB+/DFTB+-24.1-foss-2023a-PL_TB_MPI.eb new file: d/DFTB+/DFTB+-24.1-foss-2023a-PL_TB_noMPI.eb modified: d/DFTB+/DFTB+-24.1-foss-2023a-TB.eb
38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
name = 'cuDNN'
|
|
version = '9.5.0.50'
|
|
versionsuffix = '-CUDA-%(cudaver)s'
|
|
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
|
|
|
|
# note: cuDNN is tied to specific to CUDA versions,
|
|
# see also https://docs.nvidia.com/deeplearning/cudnn/support-matrix/index.html#cudnn-cuda-hardware-versions
|
|
local_short_ver = '.'.join(version.split('.')[:3])
|
|
local_cuda_major = '12'
|
|
|
|
source_urls = [
|
|
'https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-%(cudnnarch)s/'
|
|
]
|
|
sources = ['%%(namelower)s-linux-%%(cudnnarch)s-%%(version)s_cuda%s-archive.tar.xz' % local_cuda_major]
|
|
checksums = [{
|
|
'%%(namelower)s-linux-sbsa-%%(version)s_cuda%s-archive.tar.xz' % local_cuda_major:
|
|
'494b640a69feb40ce806a726aa63a1de6b2ec459acbe6a116ef6fe3e6b27877d',
|
|
'%%(namelower)s-linux-x86_64-%%(version)s_cuda%s-archive.tar.xz' % local_cuda_major:
|
|
'86e4e4f4c09b31d3850b402d94ea52741a2f94c2f717ddc8899a14aca96e032d',
|
|
}]
|
|
|
|
dependencies = [('CUDA', '12.6.0')]
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'include/cudnn.h', 'lib64/libcudnn_adv_static.a', 'lib64/libcudnn_cnn_static.a',
|
|
'lib64/libcudnn_engines_precompiled_static.a', 'lib64/libcudnn_engines_runtime_compiled_static.a',
|
|
'lib64/libcudnn_graph_static.a', 'lib64/libcudnn_heuristic_static.a', 'lib64/libcudnn_ops_static.a',
|
|
],
|
|
'dirs': ['include', 'lib64'],
|
|
}
|
|
|
|
moduleclass = 'numlib'
|