summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/swfft/package.py
blob: 1840f0d55ea11e5a404c6055561360c36247a120 (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
# 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 Swfft(MakefilePackage):
    """A stand-alone version of HACC's distributed-memory, pencil-decomposed,
    parallel 3D FFT."""

    homepage = "https://xgitlab.cels.anl.gov/hacc/SWFFT"
    url = "https://xgitlab.cels.anl.gov/api/v4/projects/hacc%2FSWFFT/repository/archive.tar.gz?sha=v1.0"
    git = "https://xgitlab.cels.anl.gov/hacc/SWFFT.git"

    version("1.0", sha256="d0eba8446a89285e4e43cba787fec6562a360079a99d56f3af5001cc7e66d5dc")
    version("develop", branch="master")

    depends_on("mpi")
    depends_on("fftw")

    # fix error
    #     TimingStats.h:94:35: error: 'printf' was not declared in this scope
    patch("include-stdio_h.patch")

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

    @property
    def build_targets(self):
        targets = []
        spec = self.spec

        targets.append("DFFT_MPI_CC=%s" % spec["mpi"].mpicc)
        targets.append("DFFT_MPI_CXX=%s" % spec["mpi"].mpicxx)
        targets.append("DFFT_MPI_F90=%s" % spec["mpi"].mpifc)

        if self.spec.satisfies("%nvhpc"):
            # remove -Wno-deprecated -std=gnu99
            targets.append("DFFT_MPI_CFLAGS=-g -O3 -Wall")

        return targets

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        install("build/CheckDecomposition", prefix.bin)
        install("build/TestDfft", prefix.bin)