summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mpibind/package.py
blob: f448d9b95218b8b601f953ee7725df3c10f0845c (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
# Copyright 2013-2020 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 sys

from spack import *


class Mpibind(AutotoolsPackage):
    """A memory-driven algorithm to map parallel codes
    to heterogeneous architectures"""

    homepage    = "https://github.com/LLNL/mpibind"
    url         = "https://github.com/LLNL/mpibind/archive/refs/tags/v0.5.0.tar.gz"
    git         = "https://github.com/LLNL/mpibind.git"

    maintainers = ['eleon']

    # The build process uses 'git describe --tags' to get the
    # package version, thus we need 'get_full_repo'
    version('master', branch='master', get_full_repo=True)
    version('0.5.0', sha256='51bb27341109aeef121a8630bd56f5551c70ebfd337a459fb70ef9015d97d2b7')

    variant('cuda', default=False,
            description='Build w/support for NVIDIA GPUs.')
    variant('rocm', default=False,
            description='Build w/support for AMD GPUs.')

    depends_on('autoconf', type='build')
    depends_on('automake', type='build')
    depends_on('libtool',  type='build')
    depends_on('m4',       type='build')
    depends_on('pkgconf',  type='build')

    depends_on('hwloc@2:+libxml2', type='link')
    depends_on('hwloc@2:+pci', when=(sys.platform != 'darwin'), type='link')
    depends_on('hwloc@2:+cuda+nvml', when='+cuda', type='link')
    depends_on('hwloc@2.4:+rocm+opencl', when='+rocm', type='link')

    def autoreconf(self, spec, prefix):
        autoreconf('--install', '--verbose', '--force')

    # To build and run the tests, make sure 'libtap' is installed
    # on the target system and is recognized by pkg-config.
    # Unfortunately, libtap is not in Spack.