74 lines
3.7 KiB
Python
74 lines
3.7 KiB
Python
##############################################################################
|
|
# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
#
|
|
# This file is part of Spack.
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
# LLNL-CODE-647188
|
|
#
|
|
# For details, see https://github.com/spack/spack
|
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
|
# conditions of the GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
##############################################################################
|
|
from spack import *
|
|
from glob import glob
|
|
|
|
|
|
class Cuda(Package):
|
|
"""CUDA is a parallel computing platform and programming model invented
|
|
by NVIDIA. It enables dramatic increases in computing performance by
|
|
harnessing the power of the graphics processing unit (GPU).
|
|
|
|
Note: This package does not currently install the drivers necessary
|
|
to run CUDA. These will need to be installed manually. See:
|
|
http://docs.nvidia.com/cuda/cuda-getting-started-guide-for-linux for
|
|
details."""
|
|
|
|
homepage = "http://www.nvidia.com/object/cuda_home_new.html"
|
|
|
|
version('9.1.85', '67a5c3933109507df6b68f80650b4b4a', expand=False,
|
|
url="https://developer.nvidia.com/compute/cuda/9.1/Prod/local_installers/cuda_9.1.85_387.26_linux")
|
|
version('9.0.176', '7a00187b2ce5c5e350e68882f42dd507', expand=False,
|
|
url="https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/cuda_9.0.176_384.81_linux-run")
|
|
version('8.0.61', '33e1bd980e91af4e55f3ef835c103f9b', expand=False,
|
|
url="https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_375.26_linux-run")
|
|
version('8.0.44', '6dca912f9b7e2b7569b0074a41713640', expand=False,
|
|
url="https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_8.0.44_linux-run")
|
|
version('7.5.18', '4b3bcecf0dfc35928a0898793cf3e4c6', expand=False,
|
|
url="http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_7.5.18_linux.run")
|
|
version('6.5.14', '90b1b8f77313600cc294d9271741f4da', expand=False,
|
|
url="http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.14_linux_64.run")
|
|
|
|
def install(self, spec, prefix):
|
|
runfile = glob(join_path(self.stage.path, 'cuda*_linux*'))[0]
|
|
chmod = which('chmod')
|
|
chmod('+x', runfile)
|
|
runfile = which(runfile)
|
|
|
|
# Note: NVIDIA does not officially support many newer versions of
|
|
# compilers. For example, on CentOS 6, you must use GCC 4.4.7 or
|
|
# older. See:
|
|
# http://docs.nvidia.com/cuda/cuda-installation-guide-linux/#system-requirements
|
|
# https://gist.github.com/ax3l/9489132
|
|
# for details.
|
|
|
|
runfile(
|
|
'--silent', # disable interactive prompts
|
|
'--verbose', # create verbose log file
|
|
'--override', # override compiler version checks
|
|
'--toolkit', # install CUDA Toolkit
|
|
'--toolkitpath=%s' % prefix
|
|
)
|