summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-melissa-core/package.py
blob: 78358c4401dc0002ef52df9ba8f37d94ea60dabf (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 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 PyMelissaCore(PythonPackage):
    """Melissa is a file-avoiding, adaptive, fault-tolerant and elastic
    framework, to run large-scale sensitivity analysis or deep-surrogate
    training on supercomputers.
    This package builds the launcher and server modules.
    """

    homepage = "https://gitlab.inria.fr/melissa/melissa"
    git = "https://gitlab.inria.fr/melissa/melissa.git"
    maintainers("robcaulk", "mschouler", "raffino")

    license("BSD-3-Clause")

    version("develop", branch="develop", preferred=True)
    version("joss", tag="JOSS_v2", commit="20bbe68c1a7b73aa2ea3ad35681c332c7a5fc516")
    version("sc23", tag="SC23", commit="8bb5b6817d4abe4eaa5893552d711150e53535f3")

    # define variants for the deep learning server (torch, tf)
    variant(
        "torch", default=False, description="Install Deep Learning requirements with Pytorch only"
    )
    variant(
        "tf", default=False, description="Install Deep Learning requirements with TensorFlow only"
    )

    depends_on("python@3.8.0:", type=("build", "run"))
    depends_on("py-setuptools@46.4:", type=("build"))
    # requirements.txt (SA)
    depends_on("py-pyzmq@22.3.0:", type="run")
    depends_on("py-mpi4py@3.1.3:", when="@develop,joss", type="run")
    depends_on("py-mpi4py@3.1.3", when="@sc23", type="run")
    depends_on("py-numpy@1.21:", type="run")
    depends_on("py-jsonschema@4.5:", type="run")
    depends_on("py-python-rapidjson@1.8:", when="@develop,joss", type="run")
    depends_on("py-python-rapidjson@1.9:", when="@sc23", type="run")
    depends_on("py-scipy@1.10.0:", type="run")
    depends_on("py-plotext@5.2.8:", type="run")
    depends_on("py-cloudpickle@2.2.0:", type="run", when="@develop,joss")
    depends_on("py-iterative-stats@0.1.0", type="run", when="@develop")
    depends_on("py-iterative-stats@0.0.4", type="run", when="@joss")
    # requirements_deep_learning.txt (DL with torch)
    depends_on("py-tensorboard@2.10.0:", type="run", when="+torch")
    depends_on("py-matplotlib", type="run", when="+torch")
    depends_on("py-torch@1.12.1:", type="run", when="+torch")
    depends_on("py-python-hostlist", type="run", when="@sc23+torch")
    # requirements_deep_learning.txt  (DL with tensorflow)
    depends_on("py-tensorboard@2.10.0:", type="run", when="+tf")
    depends_on("py-matplotlib", type="run", when="+tf")
    depends_on("py-tensorflow@2.8.0:", type="run", when="+tf")
    conflicts("@sc23", when="+tf", msg="tensorflow is only supported with newer versions")