Revision 6fdf7bda440ee80ba801c70aa907f601b267e01b authored by Danielle Robinson on 01 October 2019, 18:53:42 UTC, committed by GitHub on 01 October 2019, 18:53:42 UTC
* Adding gpu support to the cholesky jitter and eig tests.  Also fixing the assert error for NaNs on the gpu

* Simplifying assert since default sum and nansum return a scalar

* Fix style check

* Adding check for if the gpu is available we will run the tests on the gpu

* Reconsolidating gpu check test with the checks in the core/component package
1 parent 1ce8fe5
Raw File
setup.cfg
[aliases]
test = pytest --addopts --cov=src/gluonts
tests = pytest --addopts --cov=src/gluonts

[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1

[metadata]
description-file = public/README.md

[tool:pytest]
testpaths = test
addopts = -v --doctest-modules --color=yes
back to top