
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
29 lines
1004 B
Python
29 lines
1004 B
Python
# Copyright 2013-2019 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 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"
|
|
|
|
version('master', branch='master')
|
|
version('143187', commit='143187575d1cfa410100037b8aea2e767e0af637')
|
|
version('0.2', sha256='40e86543968faa2fe203cf0b004a4c7905303db0c860efe4ce4e1f27e46394fc')
|
|
|
|
depends_on('mpi')
|
|
depends_on('boost')
|
|
|
|
patch('cmake-143187.patch', when='@143187')
|
|
|
|
def cmake_args(self):
|
|
spec = self.spec
|
|
return ['-DBOOST_ROOT:PATH=%s' % spec['boost'].prefix]
|