From 9b43f1ce945a95ecd96d94505c7b017c4459d049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Mon, 13 Jul 2020 12:42:53 +0200 Subject: [PATCH] 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 --- c/CUDA/CUDA-10.1.243.eb | 2 +- c/CUDA/CUDA-10.2.89.eb | 6 +++--- c/CUDA/CUDA-11.0.182.eb | 24 ++++++++++++++++++++++++ j/Java/Java-1.8.0_241.eb | 18 ++++++++++++++++++ 4 files changed, 46 insertions(+), 4 deletions(-) create mode 100644 c/CUDA/CUDA-11.0.182.eb create mode 100644 j/Java/Java-1.8.0_241.eb diff --git a/c/CUDA/CUDA-10.1.243.eb b/c/CUDA/CUDA-10.1.243.eb index 5f95064b..95b02bef 100644 --- a/c/CUDA/CUDA-10.1.243.eb +++ b/c/CUDA/CUDA-10.1.243.eb @@ -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'] diff --git a/c/CUDA/CUDA-10.2.89.eb b/c/CUDA/CUDA-10.2.89.eb index 4c3bb98f..a4d34247 100644 --- a/c/CUDA/CUDA-10.2.89.eb +++ b/c/CUDA/CUDA-10.2.89.eb @@ -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'] diff --git a/c/CUDA/CUDA-11.0.182.eb b/c/CUDA/CUDA-11.0.182.eb new file mode 100644 index 00000000..fae7bc49 --- /dev/null +++ b/c/CUDA/CUDA-11.0.182.eb @@ -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' diff --git a/j/Java/Java-1.8.0_241.eb b/j/Java/Java-1.8.0_241.eb new file mode 100644 index 00000000..f97aca87 --- /dev/null +++ b/j/Java/Java-1.8.0_241.eb @@ -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'