-
Notifications
You must be signed in to change notification settings - Fork 685
Fix bug where source transform passes untransformed model to next stage #14186
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
Fix bug where source transform passes untransformed model to next stage #14186
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/14186
Note: Links to docs will display an error until the docs builds have been completed. ❌ 5 Cancelled JobsAs of commit 9f12495 with merge base f294074 ( CANCELLED JOBS - The following jobs were cancelled. Please retry:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This pull request was exported from Phabricator. Differential Revision: D82167495 |
…ge (pytorch#14186) Summary: `quantize_()` modifies model in place, we need to make a copy to avoid making changes to user passed model. Fix a bug as discussed in pytorch#14171 (comment) Differential Revision: D82167495
8577d71
to
d9777c0
Compare
This pull request was exported from Phabricator. Differential Revision: D82167495 |
This PR needs a
|
…ge (pytorch#14186) Summary: `quantize_()` modifies model in place, we need to make a copy to avoid making changes to user passed model. Fix a bug as discussed in pytorch#14171 (comment) Differential Revision: D82167495
d9777c0
to
9f12495
Compare
This pull request was exported from Phabricator. Differential Revision: D82167495 |
LGTM |
Summary:
quantize_()
modifies model in place, we need to make a copy to avoid making changes to user passed model. Fix a bug as discussed in #14171 (comment)Differential Revision: D82167495