spack/var/spack/repos/builtin/packages/mlperf-deepcam/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

44 lines
1.7 KiB
Python

# Copyright 2013-2021 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 MlperfDeepcam(Package):
"""PyTorch implementation for the climate segmentation benchmark,
based on the Exascale Deep Learning for Climate Analytics"""
homepage = "https://github.com/azrael417/mlperf-deepcam"
git = "https://github.com/azrael417/mlperf-deepcam.git"
version('master', branch='master')
tags = ['proxy-app']
depends_on('python@3:', type=('build', 'run'))
depends_on('py-h5py', type=('build', 'run'))
depends_on('py-pycuda', type=('build', 'run'))
depends_on('py-mpi4py', type=('build', 'run'))
depends_on('py-torch+cuda', when='+cuda', type=('build', 'run'))
depends_on('py-torch~cuda~cudnn~nccl', when='~cuda', type=('build', 'run'))
depends_on('py-matplotlib', type=('build', 'run'))
depends_on('py-basemap', type=('build', 'run'))
depends_on('py-pillow', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-pillow', type=('build', 'run'))
depends_on('py-argparse', type=('build', 'run'))
depends_on('py-pandas', type=('build', 'run'))
depends_on('py-apex', type=('build', 'run'))
depends_on('py-wandb', type=('build', 'run'))
depends_on('py-apex', type=('build', 'run'))
depends_on('py-mlperf-logging', type=('build', 'run'))
depends_on('py-pytorch-gradual-warmup-lr', type=('build', 'run'))
def install(self, spec, prefix):
# Mostly about providing an environment so just copy everything
install_tree('.', prefix)