summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mshadow/package.py
blob: 652c454f5d7d6a321c53599f4138ce1dacf586ef (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
# Copyright 2013-2024 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 Mshadow(Package):
    """MShadow is a lightweight CPU/GPU Matrix/Tensor C++ Template Library.
    in C++/CUDA."""

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

    license("Apache-2.0")

    version("master", branch="master")
    version("20170721", commit="20b54f068c1035f0319fa5e5bbfb129c450a5256")

    def install(self, spec, prefix):
        install_tree("mshadow", prefix.include.mshadow)
        install_tree("make", prefix.make)