-
Notifications
You must be signed in to change notification settings - Fork 0
/
CUDA-7.5.18.eb
37 lines (30 loc) · 1.6 KB
/
CUDA-7.5.18.eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
##
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
#
# Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB, Ghent University
# Authors:: George Tsouloupas <[email protected]>, Fotis Georgatos <[email protected]>, Kenneth Hoste
# License:: MIT/GPL
# $Id$
#
# This work implements a part of the HPCBIOS project and is a component of the policy:
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-99.html
##
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'}
# eg. http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_7.5.18_linux.run
source_urls = ['http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/']
sources = ['%(namelower)s_%(version)s_linux.run']
checksums = [('md5', '4b3bcecf0dfc35928a0898793cf3e4c6')]
sanity_check_paths = {
'files': ["bin/%s" % x for x in ["fatbinary", "nvcc", "nvlink", "ptxas"]] +
["lib64/lib%s.so" % (y) for y in ["cublas", "cudart", "cufft",
"curand", "cusparse"]],
'dirs': ["include"],
}
moduleclass = 'system'