Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Eichenberger <[email protected]>
  • Loading branch information
AlexandreEichenberger committed Sep 23, 2024
1 parent e428a31 commit e49dd38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onnx/backend/test/case/node/clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def export() -> None:
)

x = np.array([-1, 0, 6]).astype(np.float32)
y = np.array([1, 1, 1]).astype(np.float32) # Value of max when min>max.
min_val = np.float32(2) # Min greater than max.
y = np.array([1, 1, 1]).astype(np.float32)
min_val = np.float32(2)
max_val = np.float32(1)
expect(
node,
Expand Down

0 comments on commit e49dd38

Please sign in to comment.