kokkos-tools: add new package (#45382)

This commit is contained in:
Richard Berger 2024-08-22 18:09:19 -06:00 committed by GitHub
parent ead25b1e9e
commit 823a2c1e4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,31 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class KokkosTools(CMakePackage):
"""Kokkos Profiling and Debugging Tools"""
homepage = "https://github.com/kokkos/kokkos-tools/"
git = "https://github.com/kokkos/kokkos-tools.git"
license("Apache-2.0 WITH LLVM-exception")
version("develop", branch="develop")
variant("mpi", default=False, description="Enable MPI support")
variant("papi", default=False, description="Enable PAPI support")
depends_on("kokkos")
depends_on("mpi", when="+mpi")
depends_on("papi", when="+papi")
def cmake_args(self):
args = [
self.define_from_variant("KokkosTools_ENABLE_MPI", "mpi"),
self.define_from_variant("KokkosTools_ENABLE_PAPI", "papi"),
]
return args