summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/minigan/package.py
blob: c41f7a75bf6f5ecb48352763d060bb5f3a221b4c (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
# Copyright 2013-2022 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 Minigan(Package):
    """miniGAN is a generative adversarial network code developed as part of the
    Exascale Computing Project's (ECP) ExaLearn project at
    Sandia National Laboratories."""

    homepage = "https://github.com/SandiaMLMiniApps/miniGAN"
    url      = "https://github.com/SandiaMLMiniApps/miniGAN/archive/1.0.0.tar.gz"

    version('1.0.0', sha256='ef6d5def9c7040af520acc64b7a8b6c8ec4b7901721b11b0cb25a583ea0c8ae3')

    depends_on('python', type=('build', 'run'))
    depends_on('py-setuptools', type='build')
    depends_on('py-torch', type=('build', 'run'))
    depends_on('py-numpy', type=('build', 'run'))
    depends_on('py-horovod@master', type=('build', 'run'))
    depends_on('py-torchvision', type=('build', 'run'))
    depends_on('py-matplotlib@3.0.0', type=('build', 'run'))

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