From c368c4d165cf89b546421526644f560e13cccea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Wed, 20 Nov 2019 13:58:52 +0100 Subject: [PATCH] new file: c/CUDA/CUDA-9.2.148.eb --- c/CUDA/CUDA-9.2.148.eb | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 c/CUDA/CUDA-9.2.148.eb diff --git a/c/CUDA/CUDA-9.2.148.eb b/c/CUDA/CUDA-9.2.148.eb new file mode 100644 index 00000000..b2460748 --- /dev/null +++ b/c/CUDA/CUDA-9.2.148.eb @@ -0,0 +1,30 @@ +# IT4Innovations 2018 + +name = 'CUDA' +version = '9.2.88' + +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.nvidia.com/local_compute/cuda/%(version_major_minor)s/prod/local_installers/'] + +sources = ['cuda_9.2.88_396.26_linux'] + +modextravars = { + 'CUDA_HOME': '%(installdir)s', +} + +modextrapaths = { + 'LIBRARY_PATH': 'lib64/stubs', + 'LD_LIBRARY_PATH': 'lib64/stubs', +} + +modluafooter = 'add_property("arch","gpu")' + +moduleclass = 'system'