sirius: fix spla+openmp requirement (#44685)

This commit is contained in:
Simon Frasch 2024-06-13 06:53:28 +02:00 committed by GitHub
parent eff4451cdd
commit 74210c7f46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -155,7 +155,8 @@ class Sirius(CMakePackage, CudaPackage, ROCmPackage):
depends_on("spla@1.1.0:")
depends_on("spla+cuda", when="+cuda")
depends_on("spla+rocm", when="+rocm")
depends_on("spla+openmp", when="+openmp")
# spla removed the openmp option in 1.6.0
conflicts("^spla@:1.5~openmp", when="+openmp")
depends_on("nlcglib", when="+nlcglib")
depends_on("nlcglib+rocm", when="+nlcglib+rocm")