diff options
author | kwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com> | 2022-10-11 14:03:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 12:03:39 -0700 |
commit | 5d0f0914b8d32ea9176a6c2d8cd94e0e798476a9 (patch) | |
tree | 3c1c9d81168388a6431bf37df1a7f359f6390e8e | |
parent | de8c827983556f77899adad46a2c7dd46388883b (diff) | |
download | spack-5d0f0914b8d32ea9176a6c2d8cd94e0e798476a9.tar.gz spack-5d0f0914b8d32ea9176a6c2d8cd94e0e798476a9.tar.bz2 spack-5d0f0914b8d32ea9176a6c2d8cd94e0e798476a9.tar.xz spack-5d0f0914b8d32ea9176a6c2d8cd94e0e798476a9.zip |
Omega-H: Current constraint doesn't allow any cuda (#33164)
From the issue referenced, it seems later and earlier versions
of cuda work.
-rw-r--r-- | var/spack/repos/builtin/packages/omega-h/package.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/omega-h/package.py b/var/spack/repos/builtin/packages/omega-h/package.py index f4ea6df2f8..c9660995a4 100644 --- a/var/spack/repos/builtin/packages/omega-h/package.py +++ b/var/spack/repos/builtin/packages/omega-h/package.py @@ -54,16 +54,16 @@ class OmegaH(CMakePackage, CudaPackage): # Note: '+cuda' and 'cuda_arch' variants are added by the CudaPackage depends_on("cuda", when="+cuda") conflicts( - "cuda@11.2:", + "cuda@11.2", when="@scorec.10.1.0:", - msg="Thrust is broken in CUDA >= 11.2.* see https://github.com/sandialabs/omega_h/issues/366", + msg="Thrust is broken in CUDA = 11.2.* see https://github.com/sandialabs/omega_h/issues/366", ) # the sandia repo has a fix for cuda > 11.2 support # see github.com/sandialabs/omega_h/pull/373 conflicts( - "cuda@11.2:", + "cuda@11.2", when="@:9.34.4", - msg="Thrust is broken in CUDA >= 11.2.* see https://github.com/sandialabs/omega_h/issues/366", + msg="Thrust is broken in CUDA = 11.2.* see https://github.com/sandialabs/omega_h/issues/366", ) # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86610 |