-
Notifications
You must be signed in to change notification settings - Fork 23.2k
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
[ONNX] Update special post process for SequenceInsert after SequenceEmpty #56965
Conversation
💊 CI failures summary and remediationsAs of commit 3e4386e (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).Follow this link to opt-out of these comments for your Pull Requests.Please report bugs/suggestions to the (internal) Dr. CI Users group. |
0591a6d
to
9f7f018
Compare
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.
LGTM!
39e85b2
to
3e4386e
Compare
Codecov Report
@@ Coverage Diff @@
## onnx_ms_1 #56965 +/- ##
=============================================
- Coverage 76.45% 76.44% -0.01%
=============================================
Files 1993 1993
Lines 199825 199856 +31
=============================================
+ Hits 152767 152774 +7
- Misses 47058 47082 +24 |
…mpty (#56965) `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
…mpty (#56965) `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Co-authored-by: BowenBao <bowbao@microsoft.com>
…mpty (#56965) `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
…r SequenceEmpty (#56965)" `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
…r SequenceEmpty (#56965)" `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Co-authored-by: BowenBao <bowbao@microsoft.com> Differential Revision: [D28714808](https://our.internmc.facebook.com/intern/diff/D28714808) [ghstack-poisoned]
…mpty (#56965) (#58693) Summary: Pull Request resolved: #58693 `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Test Plan: Imported from OSS Reviewed By: driazati Differential Revision: D28714808 Pulled By: SplitInfinity fbshipit-source-id: e45ab3a12d0fec637733acbd3cd0438ff80d2cd4 Co-authored-by: BowenBao <bowbao@microsoft.com>
…mpty (pytorch#56965) (pytorch#58693) Summary: Pull Request resolved: pytorch#58693 `ONNX::SequenceEmpty` requires dtype to be provided, and is default to float. We updates previous dtype of created `ONNX::SequenceEmpty` node when dtype is later discovered to be other than float, through downstream `ONNX::SequenceInsert` node. This PR improves the algorithm to cover nested loop case. Test Plan: Imported from OSS Reviewed By: driazati Differential Revision: D28714808 Pulled By: SplitInfinity fbshipit-source-id: e45ab3a12d0fec637733acbd3cd0438ff80d2cd4 Co-authored-by: BowenBao <bowbao@microsoft.com>
ONNX::SequenceEmpty
requires dtype to be provided, and is default to float. We updates previous dtype of createdONNX::SequenceEmpty
node when dtype is later discovered to be other than float, through downstreamONNX::SequenceInsert
node. This PR improves the algorithm to cover nested loop case.