GPyTorch: add new package (#17237)
This commit is contained in:
parent
b00bc2a18e
commit
ad708cde53
1 changed files with 21 additions and 0 deletions
21
var/spack/repos/builtin/packages/py-gpytorch/package.py
Normal file
21
var/spack/repos/builtin/packages/py-gpytorch/package.py
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# 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 PyGpytorch(PythonPackage):
|
||||||
|
"""GPyTorch is a Gaussian process library implemented using PyTorch.
|
||||||
|
GPyTorch is designed for creating scalable, flexible, and modular Gaussian
|
||||||
|
process models with ease."""
|
||||||
|
|
||||||
|
homepage = "https://gpytorch.ai/"
|
||||||
|
url = "https://pypi.io/packages/source/g/gpytorch/gpytorch-1.1.1.tar.gz"
|
||||||
|
|
||||||
|
maintainers = ['adamjstewart']
|
||||||
|
|
||||||
|
version('1.1.1', sha256='76bd455db2f17af5425f73acfaa6d61b8adb1f07ad4881c0fa22673f84fb571a')
|
||||||
|
|
||||||
|
depends_on('python@3.6:', type=('build', 'run'))
|
||||||
|
depends_on('py-setuptools', type='build')
|
||||||
|
depends_on('py-torch@1.5:', type=('build', 'run'))
|
Loading…
Reference in a new issue