diff options
author | stepanvanecek <stepanvanecek@gmail.com> | 2024-02-27 09:05:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 09:05:09 +0100 |
commit | 79c2a55e00eee9c8b1f149805ceba78468261661 (patch) | |
tree | 658185c4b840267efe499555d25de9f2398ef879 | |
parent | 71c169293c0500c6c30e9e8f3598f9ca63ea495f (diff) | |
download | spack-79c2a55e00eee9c8b1f149805ceba78468261661.tar.gz spack-79c2a55e00eee9c8b1f149805ceba78468261661.tar.bz2 spack-79c2a55e00eee9c8b1f149805ceba78468261661.tar.xz spack-79c2a55e00eee9c8b1f149805ceba78468261661.zip |
gpuscout: new package (#42761)
Co-authored-by: Stepan Vanecek <stepan@Stepans-MBP.fritz.box>
-rw-r--r-- | var/spack/repos/builtin/packages/gpuscout/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gpuscout/package.py b/var/spack/repos/builtin/packages/gpuscout/package.py new file mode 100644 index 0000000000..72fd4e6e89 --- /dev/null +++ b/var/spack/repos/builtin/packages/gpuscout/package.py @@ -0,0 +1,28 @@ +# 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 Gpuscout(CMakePackage, CudaPackage): + """GPUscout: A tool for discovering data movement-related bottlenecks on NVidia GPUs.""" + + homepage = "https://github.com/caps-tum/GPUscout" + url = "https://github.com/caps-tum/GPUscout/archive/refs/tags/v0.2.1.tar.gz" + git = "https://github.com/caps-tum/GPUscout.git" + + maintainers("stepanvanecek") + + license("Apache-2.0") + + version( + "0.2.1", + sha256="78db030c443b971358905460c53c514134c18ebca9cafc26bfcfa297ff17683b", + extension="tar.gz", + ) + version("master", branch="master") + + depends_on("cmake@3.27:", type="build") + depends_on("cuda@12:") |