summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cardioid/package.py
blob: f14aa1c9c4d55f402af2e5f8526eb699c946d39b (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
# 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 Cardioid(CMakePackage):
    """Cardiac simulation suite."""

    homepage = "https://baasic.llnl.gov/comp-bio/cardioid-code"
    git = "https://github.com/LLNL/cardioid.git"
    maintainers("rblake-llnl")

    license("MIT")

    version("develop", branch="master")
    version("elecfem", branch="elec-fem")

    variant("cuda", default=False, description="Build with cuda support")
    variant("mfem", default=False, description="Build with mfem support")

    depends_on("blas")
    depends_on("lapack")
    depends_on("mpi")
    depends_on("cuda", when="+cuda")
    depends_on("mfem+mpi+superlu-dist+lapack", when="+mfem")
    depends_on("hypre+cuda", when="+mfem+cuda")
    depends_on("cmake@3.1:", type="build")
    depends_on("perl", type="build")

    def cmake_args(self):
        spec = self.spec
        args = [
            "-DLAPACK_LIB:PATH=" + ";".join(spec["lapack"].libs.libraries),
            "-DBLAS_LIB:PATH=" + ";".join(spec["blas"].libs.libraries),
            "-DENABLE_OPENMP:BOOL=ON",
            "-DENABLE_MPI:BOOL=ON",
            "-DENABLE_FIND_MPI:BOOL=OFF",
            "-DMPI_C_COMPILER:STRING=" + spec["mpi"].mpicc,
            "-DMPI_CXX_COMPILER:STRING=" + spec["mpi"].mpicxx,
            "-DCMAKE_C_COMPILER:STRING=" + spec["mpi"].mpicc,
            "-DCMAKE_CXX_COMPILER:STRING=" + spec["mpi"].mpicxx,
        ]

        if "+cuda" in self.spec:
            args.append("-DENABLE_CUDA:BOOL=ON")
            args.append("-DCUDA_TOOLKIT_ROOT:PATH=" + spec["cuda"].prefix)
        else:
            args.append("-DENABLE_CUDA:BOOL=OFF")

        if "+mfem" in self.spec:
            args.append("-DMFEM_DIR:PATH=" + spec["mfem"].prefix)
        return args