Add pika 0.9.0 (#33010)
* Reorder dependencies in alphabetical order + fix typo
This commit is contained in:
parent
e69c8338a4
commit
4e5ea86b20
1 changed files with 9 additions and 7 deletions
|
@ -17,6 +17,7 @@ class Pika(CMakePackage, CudaPackage, ROCmPackage):
|
||||||
git = "https://github.com/pika-org/pika.git"
|
git = "https://github.com/pika-org/pika.git"
|
||||||
maintainers = ["msimberg", "albestro", "teonnik", "aurianer"]
|
maintainers = ["msimberg", "albestro", "teonnik", "aurianer"]
|
||||||
|
|
||||||
|
version("0.9.0", branch="c349b2a96476d6974d2421288ca4d2e14ef9e5897d44cd7d5343165faa2d1299")
|
||||||
version("0.8.0", sha256="058e82d7c8f95badabe52bbb4682d55aadf340d67ced1226c0673b4529adc182")
|
version("0.8.0", sha256="058e82d7c8f95badabe52bbb4682d55aadf340d67ced1226c0673b4529adc182")
|
||||||
version("0.7.0", sha256="e1bf978c88515f7af28ee47f98b795ffee521c15b39877ea4cfb405f31d507ed")
|
version("0.7.0", sha256="e1bf978c88515f7af28ee47f98b795ffee521c15b39877ea4cfb405f31d507ed")
|
||||||
version("0.6.0", sha256="cb4ebd7b92da39ec4df7b0d05923b94299d6ee2f2f49752923ffa2266ca76568")
|
version("0.6.0", sha256="cb4ebd7b92da39ec4df7b0d05923b94299d6ee2f2f49752923ffa2266ca76568")
|
||||||
|
@ -79,7 +80,7 @@ class Pika(CMakePackage, CudaPackage, ROCmPackage):
|
||||||
conflicts("%clang@:8", when="@0.2:")
|
conflicts("%clang@:8", when="@0.2:")
|
||||||
conflicts("+p2300", when="cxxstd=17")
|
conflicts("+p2300", when="cxxstd=17")
|
||||||
|
|
||||||
# Other dependecies
|
# Other dependencies
|
||||||
depends_on("hwloc@1.11.5:")
|
depends_on("hwloc@1.11.5:")
|
||||||
depends_on("boost@1.71:")
|
depends_on("boost@1.71:")
|
||||||
|
|
||||||
|
@ -88,15 +89,16 @@ class Pika(CMakePackage, CudaPackage, ROCmPackage):
|
||||||
depends_on("mimalloc", when="malloc=mimalloc")
|
depends_on("mimalloc", when="malloc=mimalloc")
|
||||||
depends_on("tbb", when="malloc=tbbmalloc")
|
depends_on("tbb", when="malloc=tbbmalloc")
|
||||||
|
|
||||||
depends_on("mpi", when="+mpi")
|
|
||||||
depends_on("cuda@11:", when="+cuda")
|
|
||||||
depends_on("apex", when="+apex")
|
depends_on("apex", when="+apex")
|
||||||
depends_on("tracy-client", when="+tracy")
|
depends_on("cuda@11:", when="+cuda")
|
||||||
depends_on("hip@5.2:", when="@0.8: +rocm")
|
depends_on("hip@5.2:", when="@0.8: +rocm")
|
||||||
depends_on("rocblas", when="+rocm")
|
depends_on("hipblas", when="@:0.8 +rocm")
|
||||||
depends_on("hipblas", when="+rocm")
|
depends_on("mpi", when="+mpi")
|
||||||
depends_on("rocsolver", when="@0.5: +rocm")
|
|
||||||
depends_on("p2300", when="+p2300")
|
depends_on("p2300", when="+p2300")
|
||||||
|
depends_on("rocblas", when="+rocm")
|
||||||
|
depends_on("rocsolver", when="@0.5: +rocm")
|
||||||
|
depends_on("tracy-client", when="+tracy")
|
||||||
|
depends_on("whip", when="@0.9:")
|
||||||
|
|
||||||
for cxxstd in cxxstds:
|
for cxxstd in cxxstds:
|
||||||
depends_on("boost cxxstd={0}".format(map_cxxstd(cxxstd)), when="cxxstd={0}".format(cxxstd))
|
depends_on("boost cxxstd={0}".format(map_cxxstd(cxxstd)), when="cxxstd={0}".format(cxxstd))
|
||||||
|
|
Loading…
Reference in a new issue