modified: c/CUDA/CUDA-10.1.243.eb

modified:   c/CUDA/CUDA-10.2.89.eb
	new file:   c/CUDA/CUDA-11.0.182.eb
	new file:   j/Java/Java-1.8.0_241.eb
This commit is contained in:
Lukáš Krupčík 2020-07-13 12:42:53 +02:00
parent 13af84b7ec
commit 9b43f1ce94
4 changed files with 46 additions and 4 deletions

View File

@ -15,7 +15,7 @@ sources = ['%(namelower)s_%(version)s_418.87.00_linux.run']
checksums = ['e7c22dc21278eb1b82f34a60ad7640b41ad3943d929bebda3008b72536855d31']
dependencies = [
('Java', '1.8.0_221'),
('Java', '1.8.0_241'),
]
postinstallcmds = ['rm -f /tmp/cuda-installer.log']

View File

@ -13,9 +13,9 @@ toolchain = SYSTEM
source_urls = ['https://developer.download.nvidia.com/compute/cuda/%(version_major_minor)s/Prod/local_installers/']
sources = ['%(namelower)s_%(version)s_440.33.01_linux.run']
dependencies = [
('Java', '1.8.0_221'),
]
#dependencies = [
# ('Java', '1.8.0_221'),
#]
postinstallcmds = ['rm -f /tmp/cuda-installer.log']

24
c/CUDA/CUDA-11.0.182.eb Normal file
View File

@ -0,0 +1,24 @@
# JH 2020
name = 'CUDA'
version = '11.0.182'
homepage = 'https://developer.nvidia.com/cuda-toolkit'
description = """CUDA (formerly Compute Unified Device Architecture) is a parallel
local_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 local_computational elements in CUDA GPUs."""
toolchain = SYSTEM
source_urls = ['https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/']
sources = ['%(namelower)s_11.0.1_450.36.06_linux.run']
#dependencies = [
# ('Java', '1.8.0_221'),
#]
postinstallcmds = ['rm -f /tmp/cuda-installer.log']
modluafooter = 'add_property("arch","gpu")'
moduleclass = 'system'

18
j/Java/Java-1.8.0_241.eb Normal file
View File

@ -0,0 +1,18 @@
# JH 2020
name = 'Java'
version = "1.8.0_241"
homepage = 'http://java.com/'
description = """Java Platform, Standard Edition (Java SE) lets you develop and deploy
Java applications on desktops and servers."""
toolchain = SYSTEM
# download the tar.gz directly from
# http://www.oracle.com/technetwork/java/javase/downloads/index.html
(vp, vs) = version.split('_')
altver = '%su%s' % (vp.split('.')[1], vs)
sources = ['jdk-%s-linux-x64.tar.gz' % altver]
moduleclass = 'lang'