summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-colossalai/package.py
blob: 5225327b3354ea54be681f3236afc06bea5da5ec (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-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 PyColossalai(PythonPackage):
    """An integrated large-scale model training system with efficient
    parallelization techniques."""

    homepage = "https://www.colossalai.org/"
    pypi = "colossalai/colossalai-0.1.3.tar.gz"

    version("0.1.3", sha256="f25ffd313e62b2cb8f97c57f25fafb0e9f59ec7bd1d1bf6e8d8483f9b0082d33")

    depends_on("python@3.7:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-torch@1.8:", type=("build", "run"))
    depends_on("py-torchvision@0.9:", type=("build", "run"))
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-tqdm", type=("build", "run"))
    depends_on("py-psutil", type=("build", "run"))
    depends_on("py-tensorboard", type=("build", "run"))
    depends_on("py-packaging", type=("build", "run"))
    depends_on("py-pre-commit", type=("build", "run"))
    depends_on("py-rich", type=("build", "run"))