-
Notifications
You must be signed in to change notification settings - Fork 693
Relax verification on flat tensor #15313
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
Enforce that the data loader size must be at least as large as the header size, not exactly. We are introducing a dual address data loader, which takes in two loaders, one for flatbuffer-only, and one for the full PTD file. The DualAddressDataLoader returns size as the combined size of both loaders. This will end up being larger than the PTD file size in the header. The new data loader allows users to address int64 and int32 at the same time. Differential Revision: [D85169688](https://our.internmc.facebook.com/intern/diff/D85169688/) [ghstack-poisoned]
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/15313
Note: Links to docs will display an error until the docs builds have been completed. ❌ 2 New Failures, 2 Unrelated FailuresAs of commit 119a0f8 with merge base 7349bb5 ( NEW FAILURES - The following jobs have failed:
FLAKY - The following job failed but was likely due to flakiness present on trunk:
BROKEN TRUNK - The following job failed but was present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
Enforce that the data loader size must be at least as large as the header size, not exactly. We are introducing a dual address data loader, which takes in two loaders, one for flatbuffer-only, and one for the full PTD file. The DualAddressDataLoader returns size as the combined size of both loaders. This will end up being larger than the PTD file size in the header. The new data loader allows users to address int64 and int32 at the same time. Differential Revision: [D85169688](https://our.internmc.facebook.com/intern/diff/D85169688/) ghstack-source-id: 317712776 Pull Request resolved: #15313
This PR needs a
|
304c04e
into
gh/lucylq/121/base
This PR was created by the merge bot to help merge the original PR into the main branch. ghstack PR number: #15313 by @lucylq ^ Please use this as the source of truth for the PR details, comments, and reviews ghstack PR base: https://github.com/pytorch/executorch/tree/gh/lucylq/121/base ghstack PR head: https://github.com/pytorch/executorch/tree/gh/lucylq/121/head Merge bot PR base: https://github.com/pytorch/executorch/tree/main Merge bot PR head: https://github.com/pytorch/executorch/tree/gh/lucylq/121/orig Differential Revision: [D85169688](https://our.internmc.facebook.com/intern/diff/D85169688/) @diff-train-skip-merge Co-authored-by: lucylq <[email protected]>
Stack from ghstack (oldest at bottom):
Enforce that the data loader size must be at least as large as the header size, not exactly.
We are introducing a dual address data loader, which takes in two loaders, one for flatbuffer-only, and one for the full PTD file. The DualAddressDataLoader returns size as the combined size of both loaders. This will end up being larger than the PTD file size in the header.
The new data loader allows users to address int64 and int32 at the same time.
Differential Revision: D85169688