Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix (#20240)
Browse files Browse the repository at this point in the history
Co-authored-by: Wei Chu <[email protected]>
  • Loading branch information
waytrue17 and Wei Chu committed May 4, 2021
1 parent b1b85d4 commit d5546ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python-pytest/onnx/test_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1630,7 +1630,7 @@ def test_onnx_export_clip(tmp_path, dtype, shape):
lambda x : x * np.random.rand(1)[0]*100,
lambda x : x - np.random.rand(1)[0]*100,
lambda x : np.random.rand(1)[0]*100 - x,
lambda x : x / (np.random.rand(1)[0]*100),
lambda x : x / (np.random.rand(1)[0]*100 + 1),
lambda x : np.random.rand(1)[0]*100 / x,
lambda x : x ** np.random.rand(1)[0]*10,
])
Expand Down

0 comments on commit d5546ea

Please sign in to comment.