-
Notifications
You must be signed in to change notification settings - Fork 26.3k
[Static Runtime] Fix a bug that aten::full_like reuses a tensor that does not match arguments
#74255
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
CI Flow Status⚛️ CI FlowRuleset - Version:
|
🔗 Helpful links
💊 CI failures summary and remediationsAs of commit 4d1864e (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
|
This pull request was exported from Phabricator. Differential Revision: D34863639 |
1 similar comment
|
This pull request was exported from Phabricator. Differential Revision: D34863639 |
12d709f to
46b8834
Compare
…t does not match arguments (pytorch#74255) Summary: Pull Request resolved: pytorch#74255 This change fixes a bug that `aten::full_like` reuses a previously allocated tensor that does not match requested one when arguments to `aten::full_like` are dynamically changed. Test Plan: - Enhanced `StaticRuntime.FullLike` to cover the modified code path. Reviewed By: mikeiovine Differential Revision: D34863639 fbshipit-source-id: 8ceffe240978b211963826ffcb8c1f693109017e
|
This pull request was exported from Phabricator. Differential Revision: D34863639 |
…t does not match arguments (#74255) Summary: Pull Request resolved: #74255 This change fixes a bug that `aten::full_like` reuses a previously allocated tensor that does not match requested one when arguments to `aten::full_like` are dynamically changed. Test Plan: - Enhanced `StaticRuntime.FullLike` to cover the modified code path. Reviewed By: mikeiovine Differential Revision: D34863639 fbshipit-source-id: ca6d4ee3c039e263cc3a4f643d949cea59381608
|
Hey @d1jang. |
Summary: This change fixes a bug that
aten::full_likereuses a previously allocated tensor that does not match requested one when arguments toaten::full_likeare dynamically changed.Test Plan: - Enhanced
StaticRuntime.FullLiketo cover the modified code path.Reviewed By: mikeiovine
Differential Revision: D34863639