summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mpifileutils/package.py
blob: 9dbf1438a7823b5649a37f0250fbc866253df384 (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
# 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 Mpifileutils(Package):
    """mpiFileUtils is a suite of MPI-based tools to manage large datasets,
    which may vary from large directory trees to large files.
    High-performance computing users often generate large datasets with
    parallel applications that run with many processes (millions in some
    cases). However those users are then stuck with single-process tools
    like cp and rm to manage their datasets. This suite provides
    MPI-based tools to handle typical jobs like copy, remove, and compare
    for such datasets, providing speedups of up to 20-30x."""

    homepage = "https://github.com/hpc/mpifileutils"
    url = "https://github.com/hpc/mpifileutils/archive/v0.9.tar.gz"
    git = "https://github.com/hpc/mpifileutils.git"

    tags = ["e4s"]

    license("BSD-3-Clause")

    version("develop", branch="main")
    version("0.11.1", sha256="e2cba53309b5b3ee581b6ff82e4e66f54628370cce694c34224ed947fece32d4")
    version("0.11", sha256="f5dc1b39077b3c04f79b2c335c4fd80306f8c57ecfbcacbb82cf532caf02b5fd")
    version("0.10.1", sha256="4c8409ef4140f6f557d0e93f0c1267baf5d893c203b29fb7a33d9bc3c5a5d25c")
    version("0.10", sha256="5a71a9acd9841c3c258fc0eaea942f18abcb40098714cc90462b57696c07e3c5")
    version("0.9.1", sha256="15a22450f86b15e7dc4730950b880fda3ef6f59ac82af0b268674d272aa61c69")
    version("0.9", sha256="1b8250af01aae91c985ca5d61521bfaa4564e46efa15cee65cd0f82cf5a2bcfb")

    patch("nosys_getdents.patch", when="@:0.10.1 target=aarch64:")

    conflicts("platform=darwin")

    depends_on("mpi")
    depends_on("libcircle@0.3:")

    # need precise version of dtcmp, since DTCMP_Segmented_exscan added
    # in v1.0.3 but renamed in v1.1.0 and later
    depends_on("dtcmp@1.0.3", when="@:0.7")
    depends_on("dtcmp@1.1.0:", when="@0.8:")

    # fixes were added to libarchive somewhere between 3.1.2 and 3.5.0
    # which helps with file names that start with "._", bumping to newer
    # libarchive, but in a way that does not disrupt older mpiFileUtils installs
    depends_on("libarchive")
    depends_on("libarchive@3.5.1:", when="@0.11:")

    depends_on("attr", when="@0.11.1:+xattr")

    depends_on("daos", when="+daos")

    depends_on("bzip2")

    depends_on("libcap")

    depends_on("openssl")

    depends_on("cmake@3.1:", when="@0.9:", type="build")

    variant("xattr", default=True, description="Enable code for extended attributes")

    variant("lustre", default=False, description="Enable optimizations and features for Lustre")

    variant("gpfs", default=False, description="Enable optimizations and features for GPFS")
    conflicts("+gpfs", when="@:0.8.1")

    variant("experimental", default=False, description="Install experimental tools")
    conflicts("+experimental", when="@:0.6")

    variant("daos", default=False, description="Enable DAOS support", when="@0.11:")

    def flag_handler(self, name, flags):
        spec = self.spec
        iflags = []
        if name == "cflags":
            if spec.satisfies("%oneapi"):
                iflags.append("-Wno-error=implicit-function-declaration")
        return (iflags, None, None)

    def cmake_args(self):
        args = std_cmake_args
        args.append("-DCMAKE_INSTALL_PREFIX=%s" % self.spec.prefix)
        args.append("-DWITH_DTCMP_PREFIX=%s" % self.spec["dtcmp"].prefix)
        args.append("-DWITH_LibCircle_PREFIX=%s" % self.spec["libcircle"].prefix)

        if self.spec.satisfies("+xattr"):
            args.append("-DENABLE_XATTRS=ON")
        else:
            args.append("-DENABLE_XATTRS=OFF")

        if self.spec.satisfies("+lustre"):
            args.append("-DENABLE_LUSTRE=ON")
        else:
            args.append("-DENABLE_LUSTRE=OFF")

        if self.spec.satisfies("+gpfs"):
            args.append("-DENABLE_GPFS=ON")
        else:
            args.append("-DENABLE_GPFS=OFF")

        if self.spec.satisfies("+experimental"):
            args.append("-DENABLE_EXPERIMENTAL=ON")
        else:
            args.append("-DENABLE_EXPERIMENTAL=OFF")

        if self.spec.satisfies("+daos"):
            args.append("-DENABLE_DAOS=ON")
            args.append("-DWITH_DAOS_PREFIX=%s" % self.spec["daos"].prefix)
        else:
            args.append("-DENABLE_DAOS=OFF")

        return args

    @when("@0.9:")
    def install(self, spec, prefix):
        args = self.cmake_args()

        source_directory = self.stage.source_path
        build_directory = join_path(source_directory, "build")

        with working_dir(build_directory, create=True):
            cmake(source_directory, *args)
            make()
            make("install")

        if self.run_tests:
            make("test")

    def configure_args(self):
        args = []
        args.append("--prefix=%s" % self.spec.prefix)
        args.append("CPPFLAGS=-I%s/src/common" % pwd())
        args.append("libarchive_CFLAGS=-I%s" % self.spec["libarchive"].prefix.include)
        args.append(
            "libarchive_LIBS=%s %s"
            % (self.spec["libarchive"].libs.search_flags, self.spec["libarchive"].libs.link_flags)
        )
        args.append("libcircle_CFLAGS=-I%s" % self.spec["libcircle"].prefix.include)
        args.append(
            "libcircle_LIBS=%s %s"
            % (self.spec["libcircle"].libs.search_flags, self.spec["libcircle"].libs.link_flags)
        )
        args.append("--with-dtcmp=%s" % self.spec["dtcmp"].prefix)

        if self.spec.satisfies("+xattr"):
            args.append("CFLAGS=-DDCOPY_USE_XATTRS")

        if self.spec.satisfies("+lustre"):
            args.append("--enable-lustre")
        else:
            args.append("--disable-lustre")

        if self.spec.satisfies("@0.7:"):
            if self.spec.satisfies("+experimental"):
                args.append("--enable-experimental")
            else:
                args.append("--disable-experimental")
        return args

    @when("@:0.8.1")
    def install(self, spec, prefix):
        args = self.configure_args()

        configure(*args)
        make()
        make("install")

        if self.run_tests:
            make("test")