diff options
author | Cameron Smith <cwsmith@users.noreply.github.com> | 2024-11-06 17:36:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 22:36:59 +0000 |
commit | 8f4a0718bf60eb3eb5284331d93b28233e22d19f (patch) | |
tree | 1ae49196a71675e6bb1adfffa11c4d92eca60f52 /var | |
parent | 9049ffdc7ac806f6197e092af10ace25af203a06 (diff) | |
download | spack-8f4a0718bf60eb3eb5284331d93b28233e22d19f.tar.gz spack-8f4a0718bf60eb3eb5284331d93b28233e22d19f.tar.bz2 spack-8f4a0718bf60eb3eb5284331d93b28233e22d19f.tar.xz spack-8f4a0718bf60eb3eb5284331d93b28233e22d19f.zip |
omega-h: new version and cuda conflicts for prior versions (#47473)
* omegah: add version 10.8.6
* omegah: cuda without kokkos conflict
* omegah: test with latest version in ci
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/omega-h/package.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/omega-h/package.py b/var/spack/repos/builtin/packages/omega-h/package.py index 67221b389a..a1e3a2363d 100644 --- a/var/spack/repos/builtin/packages/omega-h/package.py +++ b/var/spack/repos/builtin/packages/omega-h/package.py @@ -20,6 +20,11 @@ class OmegaH(CMakePackage, CudaPackage): tags = ["e4s"] version("main", branch="main") version( + "10.8.6-scorec", + commit="a730c78e516d7f6cca4f8b4e4e0a5eb8020f9ad9", + git="https://github.com/SCOREC/omega_h.git", + ) + version( "10.8.5-scorec", commit="62026fc305356abb5e02a9fce3fead9cf5077fbe", git="https://github.com/SCOREC/omega_h.git", @@ -84,6 +89,9 @@ class OmegaH(CMakePackage, CudaPackage): # Single, broken CUDA version. conflicts("^cuda@11.2", msg="See https://github.com/sandialabs/omega_h/issues/366") + # https://github.com/SCOREC/omega_h/pull/118 + conflicts("@10.5:10.8.5 +cuda~kokkos") + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86610 conflicts("%gcc@8:8.2", when="@:9.22.1") |