Dav sdk catalyst (#34010)

* SDK: Add Catalyst 1 and 2 support to the SDK

* LibCatalyst: Remove unused python3 variant from package
This commit is contained in:
kwryankrattiger 2022-11-29 11:28:32 -06:00 committed by GitHub
parent d9b438ec76
commit c6c74e98ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -156,8 +156,12 @@ class EcpDataVisSdk(BundlePackage, CudaPackage, ROCmPackage):
depends_on("py-cinemasci", when="+cinema") depends_on("py-cinemasci", when="+cinema")
dav_sdk_depends_on( dav_sdk_depends_on(
"paraview@5.10:+mpi+python+kits+shared", when="+paraview", propagate=["hdf5", "adios2"] "paraview@5.10:+mpi+python+kits+shared+catalyst+libcatalyst",
when="+paraview",
propagate=["hdf5", "adios2"],
) )
dav_sdk_depends_on("libcatalyst+mpi", when="+paraview")
# ParaView needs @5.11: in order to use cuda and be compatible with other # ParaView needs @5.11: in order to use cuda and be compatible with other
# SDK packages. # SDK packages.
depends_on("paraview +cuda", when="+paraview +cuda ^paraview@5.11:") depends_on("paraview +cuda", when="+paraview +cuda ^paraview@5.11:")

View File

@ -22,7 +22,6 @@ class Libcatalyst(CMakePackage):
version("2021-05-12", commit="8456ccd6015142b5a7705f79471361d4f5644fa7") version("2021-05-12", commit="8456ccd6015142b5a7705f79471361d4f5644fa7")
variant("mpi", default=False, description="Enable MPI support") variant("mpi", default=False, description="Enable MPI support")
variant("python3", default=False, description="Enable Python3 support")
depends_on("mpi", when="+mpi") depends_on("mpi", when="+mpi")