Skip to content
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

Reset Dynamo at Setup for all tests #9561

Merged
merged 2 commits into from
Mar 25, 2025
Merged

Conversation

mcr229
Copy link
Contributor

@mcr229 mcr229 commented Mar 24, 2025

https://github.com/pytorch/executorch/actions/runs/14047575373/job/39331644423

There seems to be some CI issues with:

torch._dynamo.exc.FailOnRecompileLimitHit: recompile_limit reached with one_graph=True. Excessive recompilations can degrade performance due to the compilation overhead of each recompilation. To monitor recompilations, enable TORCH_LOGS=recompiles. If recompilations are expected, consider increasing

To help resolve this we reset dynamo at setup for all unittests. Let's see if this helps

@mcr229 mcr229 requested a review from digantdesai as a code owner March 24, 2025 23:08
Copy link

pytorch-bot bot commented Mar 24, 2025

🔗 Helpful Links

🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/9561

Note: Links to docs will display an error until the docs builds have been completed.

❌ 1 New Failure, 1 Pending

As of commit 5417019 with merge base 5c5b84e (image):

NEW FAILURE - The following job has failed:

This comment was automatically generated by Dr. CI and updates every 15 minutes.

@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Mar 24, 2025
@facebook-github-bot
Copy link
Contributor

@mcr229 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

@mcr229 mcr229 requested review from GregoryComer and digantdesai and removed request for digantdesai March 24, 2025 23:59
@digantdesai
Copy link
Contributor

any side effects from dynamo? Also I guess stuff like inheritance or decorator is just confusing?

@facebook-github-bot
Copy link
Contributor

@mcr229 has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

@mergennachin
Copy link
Contributor

why is this recompiling in the first place?

@mcr229
Copy link
Contributor Author

mcr229 commented Mar 25, 2025

why is this recompiling in the first place?

We have a for loop exporting the same model for different configurations multiple times. I think the issue lies there where we are "re-exporting" the same model. So it seems like we need to reset dynamo after each export. It is strange though because in each loop we are technically initializing a new module, I'm guessing there is some internal cache in dynamo that recognizes its the same model structure, and tries to recompile instead.

Copy link
Member

@GregoryComer GregoryComer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: It might be nice to define a common test fixture for models + ops. If this fixes it, maybe we can create a "good first issue"-tagged issue to get help doing the refactoring.

@mergennachin
Copy link
Contributor

@tugsbayasgalan do you know if this is the right change?

@tugsbayasgalan
Copy link
Contributor

@tugsbayasgalan do you know if this is the right change?

I am not really sure, but i know torchdynamo test cases do the same thing due to some caching stuff. Maybe cc: @anijain2305 knows better

@mcr229
Copy link
Contributor Author

mcr229 commented Mar 25, 2025

Nit: It might be nice to define a common test fixture for models + ops. If this fixes it, maybe we can create a "good first issue"-tagged issue to get help doing the refactoring.

yea i was thinking that, but i didn't want to add another abstraction we maintain just for _dynamo.reset(). I guess in the future could be useful.

@mcr229
Copy link
Contributor Author

mcr229 commented Mar 25, 2025

trunk / test-models-macos (llama2, xnnpack-quantization-delegation) / macos-job (push)

seems to be flaky and have intermittent failures. This PR likely doesn't have anything to do with that failure. Will follow up on that flaky test after landing this PR.

@mcr229 mcr229 merged commit f7e6dbf into pytorch:main Mar 25, 2025
165 of 167 checks passed
pytorchmergebot pushed a commit to pytorch/pytorch that referenced this pull request Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ciflow/trunk CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. topic: not user facing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants