cuda: add polymorphic package versions (#13912)
This commit is contained in:
parent
206e7bd5aa
commit
484dab6bac
1 changed files with 41 additions and 24 deletions
|
@ -7,6 +7,42 @@
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from llnl.util.filesystem import LibraryList
|
from llnl.util.filesystem import LibraryList
|
||||||
import os
|
import os
|
||||||
|
import platform
|
||||||
|
|
||||||
|
# FIXME Remove hack for polymorphic versions
|
||||||
|
# This package uses a ugly hack to be able to dispatch, given the same
|
||||||
|
# version, to different binary packages based on the platform that is
|
||||||
|
# running spack. See #13827 for context.
|
||||||
|
# If you need to add a new version, please be aware that:
|
||||||
|
# - versions in the following dict are automatically added to the package
|
||||||
|
# - version tuple must be in the form (checksum, url)
|
||||||
|
# - checksum must be sha256
|
||||||
|
# - package key must be in the form '{os}-{arch}' where 'os' is in the
|
||||||
|
# format returned by platform.system() and 'arch' by platform.machine()
|
||||||
|
|
||||||
|
_versions = {
|
||||||
|
'10.2.89': {
|
||||||
|
'Linux-x86_64': ('560d07fdcf4a46717f2242948cd4f92c5f9b6fc7eae10dd996614da913d5ca11', 'http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run'),
|
||||||
|
'Linux-ppc64le': ('5227774fcb8b10bd2d8714f0a716a75d7a2df240a9f2a49beb76710b1c0fc619', 'http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux_ppc64le.run')},
|
||||||
|
'10.1.243': {
|
||||||
|
'Linux-x86_64': ('e7c22dc21278eb1b82f34a60ad7640b41ad3943d929bebda3008b72536855d31', 'https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run')},
|
||||||
|
'10.0.130': {
|
||||||
|
'Linux-x86_64': ('92351f0e4346694d0fcb4ea1539856c9eb82060c25654463bfd8574ec35ee39a', 'https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux')},
|
||||||
|
'9.2.88': {
|
||||||
|
'Linux-x86_64': ('8d02cc2a82f35b456d447df463148ac4cc823891be8820948109ad6186f2667c', 'https://developer.nvidia.com/compute/cuda/9.2/Prod/local_installers/cuda_9.2.88_396.26_linux')},
|
||||||
|
'9.1.85': {
|
||||||
|
'Linux-x86_64': ('8496c72b16fee61889f9281449b5d633d0b358b46579175c275d85c9205fe953', 'https://developer.nvidia.com/compute/cuda/9.1/Prod/local_installers/cuda_9.1.85_387.26_linux')},
|
||||||
|
'9.0.176': {
|
||||||
|
'Linux-x86_64': ('96863423feaa50b5c1c5e1b9ec537ef7ba77576a3986652351ae43e66bcd080c', 'https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/cuda_9.0.176_384.81_linux-run')},
|
||||||
|
'8.0.61': {
|
||||||
|
'Linux-x86_64': ('9ceca9c2397f841024e03410bfd6eabfd72b384256fbed1c1e4834b5b0ce9dc4', 'https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_375.26_linux-run')},
|
||||||
|
'8.0.44': {
|
||||||
|
'Linux-x86_64': ('64dc4ab867261a0d690735c46d7cc9fc60d989da0d69dc04d1714e409cacbdf0', 'https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_8.0.44_linux-run')},
|
||||||
|
'7.5.18': {
|
||||||
|
'Linux-x86_64': ('08411d536741075131a1858a68615b8b73c51988e616e83b835e4632eea75eec', 'http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_7.5.18_linux.run')},
|
||||||
|
'6.5.14': {
|
||||||
|
'Linux-x86_64': ('f3e527f34f317314fe8fcd8c85f10560729069298c0f73105ba89225db69da48', 'http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.14_linux_64.run')},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class Cuda(Package):
|
class Cuda(Package):
|
||||||
|
@ -20,30 +56,11 @@ class Cuda(Package):
|
||||||
|
|
||||||
homepage = "https://developer.nvidia.com/cuda-zone"
|
homepage = "https://developer.nvidia.com/cuda-zone"
|
||||||
|
|
||||||
version('10.2.89',
|
for ver, packages in _versions.items():
|
||||||
sha256='560d07fdcf4a46717f2242948cd4f92c5f9b6fc7eae10dd996614da913d5ca11',
|
key = "{0}-{1}".format(platform.system(), platform.machine())
|
||||||
expand=False,
|
pkg = packages.get(key)
|
||||||
url="http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run")
|
if pkg:
|
||||||
version('10.1.243',
|
version(ver, sha256=pkg[0], url=pkg[1], expand=False)
|
||||||
sha256='e7c22dc21278eb1b82f34a60ad7640b41ad3943d929bebda3008b72536855d31',
|
|
||||||
expand=False,
|
|
||||||
url="https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run")
|
|
||||||
version('10.0.130', sha256='92351f0e4346694d0fcb4ea1539856c9eb82060c25654463bfd8574ec35ee39a', expand=False,
|
|
||||||
url="https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_410.48_linux")
|
|
||||||
version('9.2.88', sha256='8d02cc2a82f35b456d447df463148ac4cc823891be8820948109ad6186f2667c', expand=False,
|
|
||||||
url="https://developer.nvidia.com/compute/cuda/9.2/Prod/local_installers/cuda_9.2.88_396.26_linux")
|
|
||||||
version('9.1.85', sha256='8496c72b16fee61889f9281449b5d633d0b358b46579175c275d85c9205fe953', 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', sha256='96863423feaa50b5c1c5e1b9ec537ef7ba77576a3986652351ae43e66bcd080c', 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', sha256='9ceca9c2397f841024e03410bfd6eabfd72b384256fbed1c1e4834b5b0ce9dc4', 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', sha256='64dc4ab867261a0d690735c46d7cc9fc60d989da0d69dc04d1714e409cacbdf0', expand=False,
|
|
||||||
url="https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_8.0.44_linux-run")
|
|
||||||
version('7.5.18', sha256='08411d536741075131a1858a68615b8b73c51988e616e83b835e4632eea75eec', 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', sha256='f3e527f34f317314fe8fcd8c85f10560729069298c0f73105ba89225db69da48', expand=False,
|
|
||||||
url="http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.14_linux_64.run")
|
|
||||||
|
|
||||||
# macOS Mojave drops NVIDIA graphics card support -- official NVIDIA
|
# macOS Mojave drops NVIDIA graphics card support -- official NVIDIA
|
||||||
# drivers do not exist for Mojave. See
|
# drivers do not exist for Mojave. See
|
||||||
|
|
Loading…
Reference in a new issue