Skip to content

Commit

Permalink
Merge pull request #19463 from jakevdp:numpy-upstream
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 600508042
  • Loading branch information
jax authors committed Jan 22, 2024
2 parents e23ee15 + 34901b2 commit ca63581
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions tests/lax_numpy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5646,28 +5646,29 @@ def testWrappedSignaturesMatch(self):
'empty_like': ['subok', 'order'],
'einsum': ['kwargs'],
'einsum_path': ['einsum_call'],
'eye': ['order', 'like'],
'eye': ['device', 'order', 'like'],
'hstack': ['casting'],
'identity': ['like'],
'isin': ['kind'],
'full': ['order', 'like'],
'full_like': ['subok', 'order'],
'full': ['device', 'order', 'like'],
'full_like': ['device', 'subok', 'order'],
'fromfunction': ['like'],
'histogram': ['normed'],
'histogram2d': ['normed'],
'histogramdd': ['normed'],
'nanstd': ['mean'],
'nanvar': ['mean'],
'ones': ['order', 'like'],
'ones_like': ['subok', 'order'],
'linspace': ['device'],
'nanstd': ['correction', 'mean'],
'nanvar': ['correction', 'mean'],
'ones': ['device', 'order', 'like'],
'ones_like': ['device', 'subok', 'order'],
'partition': ['kind', 'order'],
'row_stack': ['casting'],
'stack': ['casting'],
'std': ['mean'],
'std': ['correction', 'mean'],
'tri': ['like'],
'var': ['mean'],
'var': ['correction', 'mean'],
'vstack': ['casting'],
'zeros_like': ['subok', 'order']
'zeros_like': ['device', 'subok', 'order']
}

extra_params = {
Expand Down

0 comments on commit ca63581

Please sign in to comment.