Fix test breakage at head.

Add new numpy/scipy functions to documentation.
This commit is contained in:
Peter Hawkins 2019-08-02 08:55:22 -04:00
parent 1dfdd8dafe
commit b45d1ec1dd
3 changed files with 8 additions and 2 deletions

View File

@ -162,6 +162,7 @@ Not every function in NumPy is implemented; contributions are welcome!
max
maximum
mean
median
meshgrid
min
minimum
@ -228,7 +229,9 @@ Not every function in NumPy is implemented; contributions are welcome!
transpose
tri
tril
tril_indices
triu
triu_indices
true_divide
vander
var

View File

@ -34,6 +34,7 @@ jax.scipy.special
:toctree: _autosummary
digamma
entr
erf
erfc
erfinv
@ -42,6 +43,7 @@ jax.scipy.special
log_ndtr
logit
logsumexp
multigammaln
ndtr
ndtri
xlog1py

View File

@ -1745,8 +1745,9 @@ class LaxBackedNumpyTests(jtu.JaxTestCase):
@parameterized.named_parameters(
jtu.cases_from_list(
{"testcase_name": "_shape={}_dtype={}_axis={}_ddof={}_keepdims={}"
.format(shape, dtype, axis, ddof, keepdims),
{"testcase_name":
"_shape={}_dtype={}_out_dtype={}_axis={}_ddof={}_keepdims={}"
.format(shape, dtype, out_dtype, axis, ddof, keepdims),
"shape": shape, "dtype": dtype, "out_dtype": out_dtype, "axis": axis,
"ddof": ddof, "keepdims": keepdims, "rng": rng}
for shape in [(5,), (10, 5)]