py-accimage: add new package (#18122)
This commit is contained in:
parent
3210d6b64e
commit
17d96b615a
27
var/spack/repos/builtin/packages/py-accimage/package.py
Normal file
27
var/spack/repos/builtin/packages/py-accimage/package.py
Normal 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')
|
Loading…
Reference in New Issue
Block a user