Skip to content

Commit

Permalink
#12730: bert slice support unit tests CORRECTIOn
Browse files Browse the repository at this point in the history
  • Loading branch information
sjameelTT committed Sep 17, 2024
1 parent c860e7e commit f6fd4a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ttnn/unit_tests/operations/test_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ def test_slice_negative_ends(layout, dim, ends, device):
"input_shape, input_start, input_ends",
(
((1, 1, 1, 256), (0, 0, 0, 0), (1, 1, 1, -1)),
((1, 256), (0, 0), (-1, 1)),
((1, 512), (0, 0), (-1, 1)),
((1, 256), (0, 0), (-1, 256)),
((1, 512), (0, 0), (-1, 512)),
((1, 512), (0, 0), (1, 256)),
),
)
Expand Down

0 comments on commit f6fd4a1

Please sign in to comment.