diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-06-24 21:58:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 21:58:31 -0500 |
commit | ad708cde53cf19b807402f85458d930167406fba (patch) | |
tree | 6f564fa0ea1444c75cc991745ce00d9b08ff8a85 /var | |
parent | b00bc2a18eba001bf82b5b67ef61ca97c39a1c43 (diff) | |
download | spack-ad708cde53cf19b807402f85458d930167406fba.tar.gz spack-ad708cde53cf19b807402f85458d930167406fba.tar.bz2 spack-ad708cde53cf19b807402f85458d930167406fba.tar.xz spack-ad708cde53cf19b807402f85458d930167406fba.zip |
GPyTorch: add new package (#17237)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-gpytorch/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-gpytorch/package.py b/var/spack/repos/builtin/packages/py-gpytorch/package.py new file mode 100644 index 0000000000..abd728a8c5 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-gpytorch/package.py @@ -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')) |