Rename p2300 to stdexec (#33099)

* Rename p2300 package after renaming PR merged in stdexec

https://github.com/NVIDIA/stdexec/pull/622

* Adapt pika to depend on stdexec
This commit is contained in:
Auriane R 2022-10-07 14:54:05 +02:00 committed by GitHub
parent 2346544e6f
commit 39fe4371fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ class Pika(CMakePackage, CudaPackage, ROCmPackage):
depends_on("hip@5.2:", when="@0.8: +rocm")
depends_on("hipblas", when="@:0.8 +rocm")
depends_on("mpi", when="+mpi")
depends_on("p2300", when="+p2300")
depends_on("stdexec", when="+p2300")
depends_on("rocblas", when="+rocm")
depends_on("rocsolver", when="@0.5: +rocm")
depends_on("tracy-client", when="+tracy")

View File

@ -6,7 +6,7 @@
from spack.package import *
class P2300(CMakePackage):
class Stdexec(CMakePackage):
"""The proposed C++ framework for asynchronous and parallel programming."""
homepage = "https://github.com/NVIDIA/stdexec"