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 35dbd9b commit 662ed8c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions onnx/backend/test/case/node/clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ 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.
y = np.array([1, 1, 1]).astype(np.float32) # Value of max when min>max.
min_val = np.float32(2) # Min greater than max.
max_val = np.float32(1)
expect(
Expand All @@ -71,7 +71,6 @@ def export() -> None:
name="test_clip_min_greater_than_max",
)


@staticmethod
def export_clip_default() -> None:
node = onnx.helper.make_node(
Expand Down

0 comments on commit 662ed8c

Please sign in to comment.