summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/quo-vadis/package.py
blob: 52ab8be754eae5ee2eecb7decde35ec7e080e66d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# 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 QuoVadis(CMakePackage):
    """A cross-stack coordination layer to dynamically
    map runtime components to hardware resources"""

    homepage = "https://github.com/hpc/quo-vadis"
    git = "https://github.com/hpc/quo-vadis.git"

    maintainers("samuelkgutierrez")

    license("BSD-3-Clause")

    version("master", branch="master")

    variant("fortran", default=True, description="Build with Fortran bindings")
    variant("mpi", default=True, description="Build with MPI support")
    variant("mpipat", default=False, description="Affirm MPI processes are threads")
    variant("omp", default=True, description="Build with OpenMP support")

    variant(
        "gpu",
        values=("nvidia", "amd", "none"),
        default="none",
        multi=True,
        description="Build with GPU support",
    )

    depends_on("libzmq")

    with when("+mpi"):
        depends_on("mpi")

    with when("gpu=nvidia"):
        depends_on("libpciaccess")
        depends_on("cuda")

    with when("gpu=amd"):
        depends_on("libpciaccess")
        depends_on("rocm-smi-lib")

    def cmake_args(self):
        spec = self.spec

        return [
            self.define_from_variant("QV_FORTRAN_SUPPORT", "fortran"),
            self.define_from_variant("QV_MPI_SUPPORT", "mpi"),
            self.define_from_variant("QV_MPI_PROCESSES_ARE_THREADS", "mpipat"),
            self.define_from_variant("QV_OMP_SUPPORT", "omp"),
            self.define("QV_GPU_SUPPORT", not spec.satisfies("gpu=none")),
        ]