summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/miniqmc/package.py
blob: bc43f47f62f36dc093ae925caf448f02e64b1103 (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
# Copyright 2013-2023 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 Miniqmc(CMakePackage):
    """A simplified real space QMC code for algorithm development,
    performance portability testing, and computer science experiments
    """

    homepage = "https://github.com/QMCPACK/miniqmc"
    url = "https://github.com/QMCPACK/miniqmc/archive/0.2.0.tar.gz"

    version("0.4.0", sha256="41ddb5de6dcc85404344c80dc7538aedf5e1f1eb0f2a67ebac069209f7dd11e4")
    version("0.3.0", sha256="3ba494ba1055df91e157cb426d1fbe4192aa3f04b019277d9e571d057664d5a9")
    version("0.2.0", sha256="cdf6fc6df6ccc1e034c62f937c040bfd6a4e65a0974b95f6884edd004ae36ee4")

    tags = ["proxy-app", "ecp-proxy-app"]

    depends_on("mpi")
    depends_on("lapack")

    # Add missing PGI compiler config
    patch("pgi-cmake.patch", when="@:0.4 % nvhpc")

    def cmake_args(self):
        args = [
            "-DCMAKE_CXX_COMPILER=%s" % self.spec["mpi"].mpicxx,
            "-DCMAKE_C_COMPILER=%s" % self.spec["mpi"].mpicc,
        ]

        if self.spec.satisfies("%nvhpc"):
            args.append("-DLAPACK_LIBRARIES={0}".format(self.spec["lapack"].libs.joined(";")))

        return args

    def install(self, spec, prefix):
        install_tree(join_path(self.build_directory, "bin"), prefix.bin)
        install_tree(join_path(self.build_directory, "lib"), prefix.lib)