-
Notifications
You must be signed in to change notification settings - Fork 684
Remove expensive print from lowered_backend_module.py #5046
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
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/5046
Note: Links to docs will display an error until the docs builds have been completed. ✅ You can merge normally! (28 Unrelated Failures)As of commit 953de11 with merge base e3cbeed ( FLAKY - The following jobs failed but were likely due to flakiness present on trunk:
BROKEN TRUNK - The following jobs failed but were 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. |
This pull request was exported from Phabricator. Differential Revision: D62155526 |
Summary: Pull Request resolved: pytorch#5046 This one print was taking over 900 seconds (15 minutes) in `to_backend`. This was in a resnet152 test we were trying. This print is not important to keep around and not worth the extra compile time, remove it. Reviewed By: tarun292 Differential Revision: D62155526
d575bb9
to
40d89ac
Compare
This pull request was exported from Phabricator. Differential Revision: D62155526 |
Summary: Pull Request resolved: pytorch#5046 This one print was taking over 900 seconds (15 minutes) in `to_backend`. This was in a resnet152 test we were trying. This print is not important to keep around and not worth the extra compile time, remove it. Reviewed By: tarun292 Differential Revision: D62155526
This pull request was exported from Phabricator. Differential Revision: D62155526 |
40d89ac
to
953de11
Compare
Wow, great catch! |
Summary:
This one print was taking over 900 seconds (15 minutes) in
to_backend
.This was in a resnet152 test we were trying.
Move this to logging.debug which won't materialize the string by default.
I can also consider just removing this print if nobody needs it, a debugger
might be a better way to access this info.
I can also consider just deleting this instead if people don't need it.
Differential Revision: D62155526