summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-torchdata/package.py
blob: 3804552522064c7d0b095c606f769c1c1f363e47 (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
# 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.package import *


class PyTorchdata(PythonPackage):
    """Composable data loading modules for PyTorch."""

    homepage = "https://github.com/pytorch/data"
    git = "https://github.com/pytorch/data.git"
    url = "https://github.com/pytorch/data/archive/refs/tags/v0.4.0.tar.gz"

    maintainers = ['adamjstewart']

    version('main', branch='main')
    version('0.4.0', sha256='b4ec446a701680faa620fcb828b98ba36a63fa79da62a1e568d4a683889172da')
    version('0.3.0', sha256='ac36188bf133cf5f1041a28ccb3ee82ba52d4b5d99617be37d64d740acd6cfd4')

    # https://github.com/pytorch/data#version-compatibility
    depends_on('python@3.7:3.10', type=('build', 'run'))
    depends_on('py-torch@master', when='@main', type=('build', 'run'))
    depends_on('py-torch@1.12', when='@0.4', type=('build', 'run'))
    depends_on('py-torch@1.11', when='@0.3', type=('build', 'run'))

    # requirements.txt
    depends_on('py-setuptools', type='build')
    depends_on('py-urllib3@1.25:', type=('build', 'run'))
    depends_on('py-requests', type=('build', 'run'))
    depends_on('py-portalocker@2:', when='@0.4:', type=('build', 'run'))

    # third_party/CMakeLists.txt
    depends_on('py-pybind11', when='@0.4:')
    depends_on('aws-sdk-cpp', when='@0.4:')

    def setup_build_environment(self, env):
        env.set('USE_SYSTEM_LIBS', 'ON')