summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/nnvm/package.py
blob: 8adf71d0064fe9a3ca6fa84274baf27ca2e90538 (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
# 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 Nnvm(CMakePackage):
    """nnvm is a modular, decentralized and lightweight
    part to help build deep learning libraries."""

    homepage = "https://github.com/dmlc/nnvm"
    git = "https://github.com/dmlc/nnvm.git"

    license("Apache-2.0")

    version("master", branch="master")
    version("20170418", commit="b279286304ac954098d94a2695bca599e832effb")

    variant("shared", default=True, description="Build a shared NNVM lib.")

    depends_on("dmlc-core")

    patch("cmake.patch")
    patch("cmake2.patch", when="@20170418")

    def cmake_args(self):
        spec = self.spec
        return [
            self.define_from_variant("USE_SHARED_NNVM", "shared"),
            "-DUSE_STATIC_NNVM=%s" % ("ON" if "~shared" in spec else "OFF"),
        ]