-
Notifications
You must be signed in to change notification settings - Fork 26.3k
[static runtime] Add _out variants and reuse memory #44128
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
[ghstack-poisoned]
💊 CI failures summary and remediationsAs of commit c87604a (more details on the Dr. CI page):
🕵️ 1 new failure recognized by patternsThe following CI failures do not appear to be due to upstream breakages:
|
[ghstack-poisoned]
| if ((str == "aten::add") || (str == "aten::mul") || (str == "aten::addmm") || | ||
| (str == "aten::bmm") || (str == "aten::sigmoid") || | ||
| (str == "aten::cat")) { | ||
| return true; | ||
| } |
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.
I think it's better to keep the op names in a set, so the lookup time is O(1). We'll add more and more ops to the out_of_place set so eventually we can get full coverage of the models we support.
Stack from ghstack:
Differential Revision: D23604304