summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/multiverso/package.py
blob: 651705fdf51495c4b34ad86b9850cc51dfd2fcad (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
# 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 Multiverso(CMakePackage):
    """Multiverso is a parameter server based framework for
    training machine learning models on big data with numbers of machines."""

    homepage = "https://github.com/Microsoft/Multiverso"
    url = "https://github.com/Microsoft/Multiverso/archive/v0.2.tar.gz"
    git = "https://github.com/Microsoft/Multiverso.git"

    license("MIT")

    version("master", branch="master")
    version("143187", commit="143187575d1cfa410100037b8aea2e767e0af637")
    version("0.2", sha256="40e86543968faa2fe203cf0b004a4c7905303db0c860efe4ce4e1f27e46394fc")

    depends_on("mpi")
    depends_on("boost+exception+test")

    patch("cmake-143187.patch", when="@143187")

    def cmake_args(self):
        spec = self.spec
        return ["-DBOOST_ROOT:PATH=%s" % spec["boost"].prefix]