summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/scr/package.py
blob: a047fa522a2cc8d005fc57121e6c8f4d84318948 (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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# 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)

import os
import sys

from spack.package import *


def detect_scheduler():
    if which("aprun"):
        return "APRUN"
    if which("jsrun"):
        return "LSF"
    return "SLURM"


class Scr(CMakePackage):
    """SCR caches checkpoint data in storage on the compute nodes of a
    Linux cluster to provide a fast, scalable checkpoint/restart
    capability for MPI codes"""

    homepage = "https://computing.llnl.gov/projects/scalable-checkpoint-restart-for-mpi"
    url = "https://github.com/LLNL/scr/archive/v1.2.0.tar.gz"
    git = "https://github.com/llnl/scr.git"
    tags = ["e4s", "radiuss"]

    maintainers("CamStan", "gonsie")

    version("develop", branch="develop")
    version("legacy", branch="legacy")

    version(
        "3.0.1",
        sha256="ba8f9e676aec8176ecc46c31a4f470ac95047101654de8cc88e01a1f9d95665a",
        preferred=True,
    )
    version("3.0", sha256="e204d3e99a49efac50b4bedc7ac05f55a05f1a65429500d919900c82490532cc")
    version(
        "3.0rc2",
        sha256="4b2a718af56b3683e428d25a2269c038e9452db734221d370e3023a491477fad",
        deprecated=True,
    )
    version(
        "3.0rc1",
        sha256="bd31548a986f050024429d8ee3644eb135f047f98a3d503a40c5bd4a85291308",
        deprecated=True,
    )
    version("2.0.0", sha256="471978ae0afb56a20847d3989b994fbd680d1dea21e77a5a46a964b6e3deed6b")
    version(
        "1.2.2",
        sha256="764a85638a9e8762667ec1f39fa5f7da7496fca78de379a22198607b3e027847",
        deprecated=True,
    )
    version(
        "1.2.1",
        sha256="23acab2dc7203e9514455a5168f2fd57bc590affb7a1876912b58201513628fe",
        deprecated=True,
    )
    version(
        "1.2.0",
        sha256="e3338ab2fa6e9332d2326c59092b584949a083a876adf5a19d4d5c7a1bbae047",
        deprecated=True,
    )

    depends_on("mpi")
    depends_on("zlib-api")

    # Use latest iteration of dtcmp and  components when installing scr@develop
    cmpnts = ["axl", "dtcmp", "er", "kvtree", "rankstr", "redset", "shuffile", "spath"]
    for comp in cmpnts:
        depends_on(comp + "@main", when="@develop")

    # SCR legacy is anything 2.x.x or earlier
    # SCR components is anything 3.x.x or later
    depends_on("axl@0.7.1", when="@3.0.1:")
    depends_on("er@0.2.0", when="@3.0.1:")
    depends_on("kvtree@1.3.0", when="@3.0.1:")
    depends_on("rankstr@0.1.0", when="@3.0.1:")
    depends_on("redset@0.2.0", when="@3.0.1:")
    depends_on("shuffile@0.2.0", when="@3.0.1:")
    depends_on("spath@0.2.0 +mpi", when="@3.0.1:")
    depends_on("dtcmp@1.1.4", when="@3.0.1:")

    depends_on("axl@0.6.0", when="@3.0.0")
    depends_on("er@0.2.0", when="@3.0.0")
    depends_on("kvtree@1.3.0", when="@3.0.0")
    depends_on("rankstr@0.1.0", when="@3.0.0")
    depends_on("redset@0.2.0", when="@3.0.0")
    depends_on("shuffile@0.2.0", when="@3.0.0")
    depends_on("spath@0.2.0", when="@3.0.0")
    depends_on("dtcmp@1.1.4", when="@3.0.0")

    depends_on("axl@0.5.0:", when="@3.0rc2")
    depends_on("er@0.1.0:", when="@3.0rc2")
    depends_on("kvtree@1.2.0:", when="@3.0rc2")
    depends_on("rankstr@0.1.0:", when="@3.0rc2")
    depends_on("redset@0.1.0:", when="@3.0rc2")
    depends_on("shuffile@0.1.0:", when="@3.0rc2")
    depends_on("spath@0.1.0:", when="@3.0rc2")

    depends_on("axl@0.4.0", when="@3.0rc1")
    depends_on("er@0.0.4", when="@3.0rc1")
    depends_on("kvtree@1.1.1", when="@3.0rc1")
    depends_on("rankstr@0.0.3", when="@3.0rc1")
    depends_on("redset@0.0.5", when="@3.0rc1")
    depends_on("shuffile@0.0.4", when="@3.0rc1")
    depends_on("spath@0.0.2", when="@3.0rc1")

    # DTCMP is an optional dependency up until 3.x, required thereafter
    variant(
        "dtcmp",
        default=True,
        when="@:2",
        description="Build with DTCMP. " "Necessary to enable user directory naming at runtime",
    )
    depends_on("dtcmp", when="+dtcmp")
    depends_on("dtcmp", when="@3:")

    variant(
        "libyogrt", default=True, description="Build SCR with libyogrt for get_time_remaining."
    )
    depends_on("libyogrt scheduler=slurm", when="+libyogrt resource_manager=SLURM")
    depends_on("libyogrt scheduler=lsf", when="+libyogrt resource_manager=LSF")
    depends_on("libyogrt", when="+libyogrt")

    # PDSH required up to 3.0rc1, optional thereafter
    # TODO spack currently assumes 3.0.0 = 3.0 = 3 < 3.0rc1 < 3.0rc2
    variant("pdsh", default=True, when="@3.0.0,3.0rc2:", description="Enable use of PDSH")
    depends_on("pdsh+static_modules", type=("build", "run"), when="+pdsh")
    depends_on("pdsh+static_modules", type=("build", "run"), when="@:2,3.0rc1")

    variant(
        "scr_config",
        default="scr.conf",
        description="Location for SCR to find its system config file. "
        "May be either absolute or relative to the install prefix",
    )
    variant(
        "copy_config",
        default="none",
        description="Location from which to copy SCR system config file. "
        "Must be an absolute path.",
    )

    variant("fortran", default=True, description="Build SCR with fortran bindings")

    variant(
        "resource_manager",
        default=detect_scheduler(),
        values=("SLURM", "APRUN", "LSF", "NONE"),
        multi=False,
        description="Resource manager for which to configure SCR.",
    )

    # SCR_ASYNC_API only used in :2.x.x
    variant(
        "async_api",
        default="NONE",
        when="@:2",
        values=("NONE", "CRAY_DW", "IBM_BBAPI", "INTEL_CPPR"),
        multi=False,
        description="Asynchronous data transfer API to use with SCR.",
    )

    variant("bbapi", default=True, when="@3.0rc2:", description="Enable IBM BBAPI support")
    depends_on("axl+bbapi", when="+bbapi")
    depends_on("axl~bbapi", when="~bbapi")

    variant(
        "bbapi_fallback",
        default=False,
        when="@3:",
        description="Using BBAPI, if source or destination don't support \
            file extents then fallback to pthreads",
    )
    depends_on("axl+bbapi_fallback", when="+bbapi_fallback")
    variant(
        "bbapi_fallback",
        default=False,
        when="@3.0rc2: +bbapi",
        description="Using BBAPI, if source or destination don't support \
            file extents then fallback to pthreads",
    )
    depends_on("axl+bbapi+bbapi_fallback", when="@3.0rc2: +bbapi_fallback")

    variant("dw", default=False, when="@3.0rc2:", description="Enable Cray DataWarp support")
    depends_on("axl+dw", when="+dw")
    depends_on("axl~dw", when="~dw")

    variant("examples", default=True, when="@3.0rc2:", description="Build SCR example programs")

    variant(
        "file_lock",
        default="FLOCK",
        values=("FLOCK", "FNCTL", "NONE"),
        multi=False,
        description="File locking style for SCR.",
    )
    depends_on("kvtree file_lock=FLOCK", when="@3: file_lock=FLOCK")
    depends_on("kvtree file_lock=FNCTL", when="@3: file_lock=FNCTL")
    depends_on("kvtree file_lock=NONE", when="@3: file_lock=NONE")

    # Enabling SCR logging is a WIP, for which this will be needed
    # MySQL currently having build issues
    # variant('mysql', default=False, description='Build with MySQL to allow for \
    #        capturing SCR and syslog messages in a database')
    # depends_on('mysql', when='+mysql')

    variant("shared", default=True, when="@3.0rc2:", description="Build with shared libraries")
    depends_on("libyogrt+static", when="~shared")
    for comp in cmpnts:
        depends_on(comp + "+shared", when="+shared")
        depends_on(comp + "~shared", when="~shared")
    conflicts("~shared", when="+bbapi", msg="See SCR issue #453")
    conflicts("~shared", when="+examples", msg="See SCR issue #455")

    # TODO: Expose `tests` and `resource_manager` variants in components and
    # then propogate their setting through components.
    variant("tests", default=True, when="@3.0rc2:", description="Build with CTest included")

    # The default cache and control directories should be placed in tmpfs if available.
    # On Linux, /dev/shm is a common tmpfs location.  Other platforms, like macOS,
    # do not define a common tmpfs location, so /tmp is the next best option.
    platform_tmp_default = "/dev/shm" if sys.platform == "linux" else "/tmp"
    variant(
        "cache_base",
        default=platform_tmp_default,
        description="Compile time default location for cache directory.",
    )
    variant(
        "cntl_base",
        default=platform_tmp_default,
        description="Compile time default location for control directory.",
    )

    def flag_handler(self, name, flags):
        if self.spec.satisfies("%cce"):
            if name in ["cflags", "cxxflags", "cppflags"]:
                return (None, flags, None)
            elif name == "ldflags":
                flags.append("-ldl")
        return (flags, None, None)

    def get_abs_path_rel_prefix(self, path):
        # Return path if absolute, otherwise prepend prefix
        if os.path.isabs(path):
            return path
        else:
            return join_path(self.spec.prefix, path)

    def cmake_args(self):
        spec = self.spec
        args = []

        args.append(self.define_from_variant("ENABLE_FORTRAN", "fortran"))
        args.append(self.define_from_variant("SCR_FILE_LOCK", "file_lock"))
        args.append(self.define_from_variant("SCR_CACHE_BASE", "cache_base"))
        args.append(self.define_from_variant("SCR_CNTL_BASE", "cntl_base"))
        args.append(self.define_from_variant("SCR_RESOURCE_MANAGER", "resource_manager"))
        args.append(
            self.define(
                "SCR_CONFIG_FILE", self.get_abs_path_rel_prefix(spec.variants["scr_config"].value)
            )
        )

        if "+libyogrt" in spec:
            args.append(self.define("WITH_YOGRT_PREFIX", spec["libyogrt"].prefix))

        # if '+mysql' in spec:
        #    args.append(self.define('WITH_MYSQL_PREFIX', spec['mysql'].prefix))

        if spec.satisfies("@3:"):
            # DTCMP and components required from this point on
            cmpnts = ["axl", "dtcmp", "er", "kvtree", "rankstr", "redset", "shuffile", "spath"]
            for comp in cmpnts:
                args.append(self.define("WITH_" + comp.upper() + "_PREFIX", spec[comp].prefix))
        else:
            # dtcmp optional before this point
            if "+dtcmp" in spec:
                args.append(self.define("WITH_DTCMP_PREFIX", spec["dtcmp"].prefix))

            # Only used prior to version 3
            args.append(self.define_from_variant("SCR_ASYNC_API", "async_api"))

        if spec.satisfies("@3.0rc2:"):
            args.append(self.define_from_variant("ENABLE_IBM_BBAPI", "bbapi"))
            args.append(self.define_from_variant("ENABLE_CRAY_DW", "dw"))
            args.append(self.define_from_variant("ENABLE_EXAMPLES", "examples"))
            args.append(self.define_from_variant("ENABLE_YOGRT", "libyogrt"))
            # args.append(self.define_from_variant('ENABLE_MYSQL', 'mysql'))
            args.append(self.define_from_variant("ENABLE_PDSH", "pdsh"))
            args.append(self.define_from_variant("BUILD_SHARED_LIBS", "shared"))
            args.append(self.define_from_variant("ENABLE_TESTS", "tests"))

            # PDSH optional from this point on
            if "+pdsh" in spec:
                args.append(self.define("WITH_PDSH_PREFIX", spec["pdsh"].prefix))
        else:
            # PDSH required before this point
            args.append(self.define("WITH_PDSH_PREFIX", spec["pdsh"].prefix))

            if "platform=cray" in spec:
                args.append(self.define("SCR_LINK_STATIC", False))

        return args

    @run_after("install")
    def copy_config(self):
        spec = self.spec
        if spec.variants["copy_config"].value != "none":
            dest_path = self.get_abs_path_rel_prefix(spec.variants["scr_config"].value)
            install(spec.variants["copy_config"].value, dest_path)