py-accimage: add new package (#18122)

This commit is contained in:
Adam J. Stewart 2020-08-18 05:10:18 -05:00 committed by GitHub
parent 3210d6b64e
commit 17d96b615a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,27 @@
# Copyright 2013-2020 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)
class PyAccimage(PythonPackage):
"""An accelerated Image loader and preprocessor leveraging Intel IPP.
accimage mimics the PIL API and can be used as a backend for torchvision.
"""
homepage = "https://github.com/pytorch/accimage"
url = "https://github.com/pytorch/accimage/archive/v0.1.1.tar.gz"
version('0.1.1', sha256='573c56866a42683c7cf25185620fe82ec2ce78468e0621c29fac8f4134a785f5')
depends_on('python', type=('build', 'link', 'run'))
depends_on('jpeg')
depends_on('ipp')
depends_on('py-pytest', type='test')
depends_on('py-numpy', type='test')
depends_on('py-imageio', type='test')
def test(self):
pytest = which('pytest')
pytest('test.py')