-
Notifications
You must be signed in to change notification settings - Fork 665
[Backend Tester] Skip in-place activation tests due to lack of support in ET #13989
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/13989
Note: Links to docs will display an error until the docs builds have been completed. ✅ You can merge normally! (3 Unrelated Failures)As of commit e72370f with merge base ed0ab94 ( FLAKY - The following job failed but was likely due to flakiness present on trunk:
BROKEN TRUNK - The following jobs failed but was present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@@ -42,5 +44,6 @@ def test_elu_f32_multi_dim(self, flow: TestFlow) -> None: | |||
def test_elu_f32_alpha(self, flow: TestFlow) -> None: | |||
self._test_op(Model(alpha=0.5), (torch.randn(3, 4, 5),), flow) | |||
|
|||
@unittest.skip("In place activations aren't properly defunctionalized yet.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIRC we can only do copy_ and index_put_ today e2e
These tests are failing for all backends due to lack of defunctionalization support for in-place activations. This PR disables them to reduce noise. They can be re-enabled in the future when supported. Tracking in #11700.