Skip to content

Commit f2f02ee

Browse files
Merge pull request jax-ml#25210 from jakevdp:fix-nightly
PiperOrigin-RevId: 702156433
2 parents c9c043c + f182aa8 commit f2f02ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/lax_numpy_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6446,7 +6446,8 @@ def testWrappedSignaturesMatch(self):
64466446
_available_numpy_dtypes: list[str] = [dtype.__name__ for dtype in jtu.dtypes.all
64476447
if dtype != dtypes.bfloat16]
64486448

6449-
UNIMPLEMENTED_UFUNCS = {'spacing'}
6449+
# TODO(jakevdp): implement missing ufuncs.
6450+
UNIMPLEMENTED_UFUNCS = {'spacing', 'matvec', 'vecmat'}
64506451

64516452

64526453
def _all_numpy_ufuncs() -> Iterator[str]:

0 commit comments

Comments
 (0)