summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mshadow/package.py
blob: 3dde91770c2640b7db48bdd724bb213f0637c209 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2018 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 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"

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

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