Skip to content

Commit

Permalink
fix comment for skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Siyuan Liu committed Feb 1, 2024
1 parent d29494d commit 03f8d94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/stablehlo/test_unbounded_dynamism.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_permute(self):
r"%arg.: tensor<\?x197x12x64xf32>.*->.*tensor<\?x12x197x64xf32>",
shlo_text) is not None)

@unittest.skip("Select is not supported yet.")
@unittest.skip("Unbounded Dynamism not supported on select..")
def test_select(self):
args = (torch.rand((10, 197, 768)), 1, 0)
constraints = [
Expand All @@ -193,7 +193,7 @@ def test_select(self):
re.search(r"%arg.: tensor<\?x197x768xf32>.*->.*tensor<\?x768xf32>",
shlo_text) is not None)

@unittest.skip("Slice is not supported yet.")
@unittest.skip("Unbounded Dynamism not supported on slice.")
def test_slice(self):
args = (torch.rand((10, 3, 224, 224)), 0, 0, 9223372036854775807)
constraints = [
Expand All @@ -208,7 +208,7 @@ def test_slice(self):
r"%arg.: tensor<\?x3x224x224xf32>.*->.*tensor<\?x3x224x224xf32>",
shlo_text) is not None)

@unittest.skip("Unbounded Dynamism not supported on add.")
@unittest.skip("Unbounded Dynamism not supported on softmax.")
def test_softmax(self):
args = (torch.rand((10, 12, 197, 197)), -1, False)
constraints = [
Expand Down

0 comments on commit 03f8d94

Please sign in to comment.