From 249f571556620c20148b6b6f57adef90568b3987 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Mon, 29 Jul 2019 13:42:08 -0500 Subject: New package: py-torchvision (#12175) --- .../builtin/packages/py-torchvision/package.py | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-torchvision/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-torchvision/package.py b/var/spack/repos/builtin/packages/py-torchvision/package.py new file mode 100644 index 0000000000..c322ac8f55 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-torchvision/package.py @@ -0,0 +1,33 @@ +# Copyright 2013-2019 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 PyTorchvision(PythonPackage): + """The torchvision package consists of popular datasets, model + architectures, and common image transformations for computer vision.""" + + homepage = "https://github.com/pytorch/vision" + url = "https://github.com/pytorch/vision/archive/v0.3.0.tar.gz" + + maintainers = ['adamjstewart'] + import_modules = [ + 'torchvision', 'torchvision.datasets', 'torchvision.models', + 'torchvision.transforms', 'torchvision.ops', + 'torchvision.models.segmentation', + 'torchvision.models.detection' + ] + + version('0.3.0', sha256='c205f0618c268c6ed2f8abb869ef6eb83e5339c1336c243ad321a2f2a85195f0') + + depends_on('py-setuptools', type='build') + depends_on('py-numpy', type=('build', 'run')) + depends_on('py-six', type=('build', 'run')) + depends_on('py-torch@1.1.0:', type=('build', 'run')) + depends_on('py-pillow@4.1.1:', type=('build', 'run')) # or py-pillow-simd + + # Many of the datasets require additional dependencies to use. + # These can be installed after the fact. -- cgit v1.2.3-70-g09d2