diff options
author | Ganesh Kumar <46193450+gkathirv@users.noreply.github.com> | 2020-09-09 21:19:40 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 10:49:40 -0500 |
commit | 4c5151327f9398c5c933f5776aae509335c9b967 (patch) | |
tree | cc75bffd7a78aa46bc37dc63872be305b23432e1 | |
parent | a18700a86a59412e4a4e5f3c401e532faca19213 (diff) | |
download | spack-4c5151327f9398c5c933f5776aae509335c9b967.tar.gz spack-4c5151327f9398c5c933f5776aae509335c9b967.tar.bz2 spack-4c5151327f9398c5c933f5776aae509335c9b967.tar.xz spack-4c5151327f9398c5c933f5776aae509335c9b967.zip |
Rocm 3.7 rccl (#18587)
* ROCm 3.5 miopen recipe
* fixing flake8 issues
* cmake variant fix
* min support fix
* variant possible values
* ROCm 3.7 RCCL changes
-rw-r--r-- | var/spack/repos/builtin/packages/rccl/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/rccl/package.py b/var/spack/repos/builtin/packages/rccl/package.py index 6da62b46c5..d6dbee6eaf 100644 --- a/var/spack/repos/builtin/packages/rccl/package.py +++ b/var/spack/repos/builtin/packages/rccl/package.py @@ -13,14 +13,15 @@ class Rccl(CMakePackage): and reduce-scatter.""" homepage = "https://github.com/RadeonOpenCompute/rccl" - url = "https://github.com/ROCmSoftwarePlatform/rccl/archive/rocm-3.5.0.tar.gz" + url = "https://github.com/ROCmSoftwarePlatform/rccl/archive/rocm-3.7.0.tar.gz" maintainers = ['srekolam', 'arjun-raj-kuppala'] + version('3.7.0', sha256='8273878ff71aac2e7adf5cc8562d2933034c6c6b3652f88fbe3cd4f2691036e3') version('3.5.0', sha256='290b57a66758dce47d0bfff3f5f8317df24764e858af67f60ddcdcadb9337253') depends_on('cmake@3:', type='build') - for ver in ['3.5.0']: + for ver in ['3.5.0', '3.7.0']: depends_on('rocm-cmake@' + ver, type='build', when='@' + ver) depends_on('hip@' + ver, type='build', when='@' + ver) depends_on('rocm-device-libs@' + ver, type='build', when='@' + ver) |