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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# 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 Eztrace(Package):
"""EZTrace is a tool to automatically generate execution traces
of HPC applications."""
homepage = "https://gitlab.com/eztrace"
maintainers("trahay")
git = "https://gitlab.com/eztrace/eztrace.git"
version("master", branch="master")
version("2.1", sha256="ab5076086eced78e4c6cf7736e7765ca1337dec95a881c9270a42b3251aeea19")
version("2.0", sha256="67bd296f059cdfab303c62f674af3e1e858213d6945bd79cb8ede4a035c0c2d6")
version("1.1-13", sha256="6144d04fb62b3ccad41af0268cd921161f168d0cca3f6c210c448bb0b07be7e0")
version("1.1-10", sha256="63d1af2db38b04efa817614574f381e7536e12db06a2c75375d1795adda3d1d8")
# dependencies for eztrace 1.x and 2.x
depends_on("mpi")
depends_on("opari2")
depends_on("binutils")
# eztrace 1.x dependencies
depends_on("autoconf@2.71", type="build", when="@:1")
depends_on("automake", type="build", when="@:1")
depends_on("libtool", type="build", when="@:1")
# Does not work on Darwin due to MAP_POPULATE
conflicts("platform=darwin", when="@:1")
# eztrace 2.x dependencies
depends_on("cmake@3.1:", type="build", when="@2.0:")
depends_on("otf2", when="@2.0:")
variant("starpu", default=False, description="Enable StarPU support", when="@2.1:")
depends_on("starpu", when="@2.1:+starpu")
variant("cuda", default=False, description="Enable CUDA support", when="@2.1:")
depends_on("cuda", when="@2.1:+cuda")
variant("netcdf", default=False, description="Enable NetCDF support", when="@2.1:")
depends_on("netcdf-c", when="@2.1:+netcdf")
variant("pnetcdf", default=False, description="Enable PNetCDF support", when="@2.1:")
depends_on("parallel-netcdf", when="@2.1:+pnetcdf")
def url_for_version(self, version):
url = "https://gitlab.com/eztrace/eztrace/-/archive/{0}/eztrace-{1}.tar.gz"
return url.format(version, version)
@when("@2.0:")
def install(self, spec, prefix):
# Since eztrace 2.0, the build system uses CMake
spec = self.spec
args = [
"-DCMAKE_INSTALL_PREFIX=$prefix",
"-DEZTRACE_ENABLE_MEMORY=ON",
"-DEZTRACE_ENABLE_MPI=ON",
"-DEZTRACE_ENABLE_OPENMP=ON",
"-DEZTRACE_ENABLE_POSIXIO=ON",
"-DEZTRACE_ENABLE_PTHREAD=ON",
"-DOTF2_INCLUDE_PATH=%s" % spec["otf2"].prefix.include,
"-DOTF2_LIBRARY_PATH=%s" % spec["otf2"].libs,
]
if spec.satisfies("@2.1:"):
if spec.satisfies("%llvm-openmp-ompt"):
args.extend(["-DEZTRACE_ENABLE_OMPT=ON"])
if "+starpu" in spec:
args.extend(["-DEZTRACE_ENABLE_STARPU=ON"])
if "+cuda" in spec:
args.extend(["-DEZTRACE_ENABLE_CUDA=ON"])
if "+netcdf" in spec:
args.extend(["-DEZTRACE_ENABLE_NETCDF=ON"])
if "+pnetcdf" in spec:
args.extend(["-DEZTRACE_ENABLE_PNETCDF=ON"])
args.extend(std_cmake_args)
with working_dir("spack-build", create=True):
cmake("..", *args)
make()
make("install")
# Until eztrace 2.0, the build system uses autoconf
@when("@:1")
def install(self, spec, prefix):
if self.spec.satisfies("%fj"):
env.set("LDFLAGS", "--linkfortran")
self.patch()
which("bash")("bootstrap")
configure("--prefix=" + prefix, "--with-mpi={0}".format(self.spec["mpi"].prefix))
self.fix_libtool()
make()
make("install")
@when("@:1")
def patch(self):
filter_file(
'"DEFAULT_OUTFILE"',
'" DEFAULT_OUTFILE "',
"extlib/gtg/extlib/otf/tools/otfshrink/otfshrink.cpp",
string=True,
)
@when("@:1")
def fix_libtool(self):
if self.spec.satisfies("%fj"):
libtools = ["extlib/gtg/libtool", "extlib/opari2/build-frontend/libtool"]
for f in libtools:
filter_file('wl=""', 'wl="-Wl,"', f, string=True)
|