2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2018-07-15 02:51:58 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2018-07-15 02:51:58 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyOpentuner(PythonPackage):
|
|
|
|
"""An extensible framework for program autotuning."""
|
|
|
|
|
|
|
|
homepage = "http://opentuner.org/"
|
2018-07-24 09:55:17 +08:00
|
|
|
git = "https://github.com/jansel/opentuner.git"
|
2018-07-15 02:51:58 +08:00
|
|
|
|
2018-07-24 09:55:17 +08:00
|
|
|
version('0.8.0', commit='4cb9135')
|
2018-07-15 02:51:58 +08:00
|
|
|
|
|
|
|
# No support for Python 3 yet
|
|
|
|
depends_on('python@2.7:2.8', type=('build', 'run'))
|
|
|
|
|
|
|
|
depends_on('py-argparse@1.2.1:', type=('build', 'run'))
|
|
|
|
depends_on('py-fn@0.2.12:', type=('build', 'run'))
|
|
|
|
depends_on('py-numpy@1.8.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-pysqlite@2.6.3:', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-sqlalchemy@0.8.2:', type=('build', 'run'))
|