mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 03:38:05 +01:00

modified: c/CUDA/CUDA-8.0.44.eb new file: c/CUDA/CUDA-9.0.176.eb deleted: c/CUDA/CUDA-5.0.35-1.eb deleted: c/CUDA/CUDA-5.0.35-GCC-4.6.4-1.eb deleted: c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb deleted: c/CUDA/CUDA-7.5.18-iccifort-2016.3.210-GCC-4.9.3-2.25.eb deleted: c/CUDA/CUDA-8.0.44-intel-2017.00.eb Former-commit-id: 299d8e556cf0143efba0a211ad2f09193c9e57f6
28 lines
867 B
Plaintext
28 lines
867 B
Plaintext
name = 'CUDA'
|
|
version = '7.5.18'
|
|
|
|
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 = ['http://developer.download.nvidia.com/compute/cuda/%(version_major_minor)s/Prod/local_installers/']
|
|
|
|
sources = ['%(namelower)s_%(version)s_linux.run']
|
|
|
|
modextravars = {
|
|
'CUDA_HOME': '%(installdir)s',
|
|
}
|
|
|
|
modextrapaths = {
|
|
'LIBRARY_PATH': 'lib64/stubs',
|
|
'LD_LIBRARY_PATH': 'lib64/stubs',
|
|
}
|
|
|
|
modluafooter = 'add_property("arch","gpu")'
|
|
|
|
moduleclass = 'system'
|