Skip to content

Commit 8bcfd1a

Browse files
authored
Disable in-place threshold test (#17539)
### Summary This test is currently broken(ish) as export + ET doesn't fully defunctionalize all in-place activations yet. We already disable another in-place test in this file. Disable the test for now as it creates noise for delegates - it's not a delegate issue.
1 parent 3d1062c commit 8bcfd1a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

backends/test/suite/operators/test_threshold.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def test_threshold_f32_boundary_values(self, flow: TestFlow) -> None:
6262
x = torch.tensor([-2.0, -1.0, -0.5, 0.0, 0.5, 1.0, 2.0])
6363
self._test_op(Model(), (x,), flow)
6464

65+
@unittest.skip("In place activations aren't properly defunctionalized yet.")
6566
def test_threshold_f32_all_params(self, flow: TestFlow) -> None:
6667
# Test with all parameters customized
6768
self._test_op(

0 commit comments

Comments
 (0)