summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mlperf-deepcam/package.py
blob: 43a386b35afbf93cb54cb63e4398f4f60fb97274 (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
34
35
36
37
38
39
40
# 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 MlperfDeepcam(Package, CudaPackage):
    """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-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)