-
Notifications
You must be signed in to change notification settings - Fork 23k
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] Fix shape inference for large model #59320
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
facebook-github-bot
added
cla signed
oncall: jit
Add this issue/PR to JIT oncall triage queue
labels
Jun 2, 2021
💊 CI failures summary and remediationsAs of commit a9124f7 (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: pytorch_linux_bionic_py3_6_clang9_noarch_test (1/1)Step: "Run tests" (full log | diagnosis details | 🔁 rerun)
|
Job | Step | Action |
---|---|---|
Windows CI (pytorch-win-vs2019-cpu-py3) / render_test_results | Install dependencies | 🔁 rerun |
ci.pytorch.org: 1 failed
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.
fatcat-z
reviewed
Jun 3, 2021
shubhambhokare1
approved these changes
Jun 4, 2021
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 👍
BowenBao
force-pushed
the
onnx_large_model
branch
from
June 7, 2021 19:50
9aa4084
to
a9124f7
Compare
BowenBao
added a commit
that referenced
this pull request
Jun 18, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com>
BowenBao
added a commit
that referenced
this pull request
Jun 18, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
This was referenced Jun 18, 2021
BowenBao
added a commit
that referenced
this pull request
Jun 18, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jun 21, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jun 22, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jun 22, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jun 23, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jun 25, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jun 30, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> [ghstack-poisoned]
BowenBao
added a commit
that referenced
this pull request
Jul 6, 2021
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Co-authored-by: BowenBao <bowbao@microsoft.com> Differential Revision: [D29494910](https://our.internmc.facebook.com/intern/diff/D29494910) [ghstack-poisoned]
facebook-github-bot
pushed a commit
that referenced
this pull request
Jul 8, 2021
Summary: Pull Request resolved: #60244 Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens. Test Plan: Imported from OSS Reviewed By: zou3519, ZolotukhinM Differential Revision: D29494910 Pulled By: SplitInfinity fbshipit-source-id: 4c36d26de9a94e5d6cf78f332d4dffc46588ebf0 Co-authored-by: BowenBao <bowbao@microsoft.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #{issue number}
Do 2GB size check for protocol buffer serialization at a later time, to avoid false alarming for cases like shape inference where no serialization actually happens.