-
Notifications
You must be signed in to change notification settings - Fork 537
Release/0.6 #9862
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
Release/0.6 #9862
Conversation
Summary: Making it internal till fully converted & leveraging the OSS API. Differential Revision: D71952366 Co-authored-by: Anthony Shoumikhin <anthony@shoumikh.in>
### Summary So that we can still build third-party projects. ### Test plan CI Co-authored-by: Mengwei Liu <larryliu0820@users.noreply.github.com>
### Summary There is a bug when there is a constant_pad between two convolutions. In order to minimize permutes associated with memory format changes, we sometimes compute ops in NHWC. This is the case for ConstantPad when it is between two convs: ``` a = conv(a) a = constant_pad(a, paddings=[1, 2, 3, 4]) a = conv(a) ``` in this case we need to make sure the paddings given to constant_pad are also permuted to nhwc. ### Test plan python install_executorch.py --editable python -m unittest backends.xnnpack.test.ops.test_static_constant_pad.TestStaticConstantPad.test_fp32_static_constant_pad_nhwc Co-authored-by: Max Ren <40742183+mcr229@users.noreply.github.com>
Co-authored-by: Hansong <107070759+kirklandsign@users.noreply.github.com>
going from .rst to md for the main docs page and cleaned up the content for easier use Co-authored-by: Jesse White <5281939+byjlw@users.noreply.github.com>
For android demo, use links in pytorch-labs/executorch-examples Remove references to old demo app Add video Co-authored-by: Hansong <107070759+kirklandsign@users.noreply.github.com>
Co-authored-by: Hansong <107070759+kirklandsign@users.noreply.github.com>
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/9862
Note: Links to docs will display an error until the docs builds have been completed. This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This PR needs a
|
Summary
[PLEASE REMOVE] See CONTRIBUTING.md's Pull Requests for ExecuTorch PR guidelines.
[PLEASE REMOVE] If this PR closes an issue, please add a
Fixes #<issue-id>
line.[PLEASE REMOVE] If this PR introduces a fix or feature that should be the upcoming release notes, please add a "Release notes: " label. For a list of available release notes labels, check out CONTRIBUTING.md's Pull Requests.
Test plan
[PLEASE REMOVE] How did you test this PR? Please write down any manual commands you used and note down tests that you have written if applicable.