-
Notifications
You must be signed in to change notification settings - Fork 539
Arm backend: enable dim_order #7831
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
With edge_compile_config.skip_dim_order = True removed, to_copy will be converted into to_dim_order_copy nodes. This commit moves our logic from to_copy into to_dim_order_copy. Signed-off-by: Oscar Andersson <[email protected]> Change-Id: I46a30cd88125f3e2e26810352a1e0626bd5cce4a
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/7831
Note: Links to docs will display an error until the docs builds have been completed. ❌ 2 New Failures, 1 Cancelled JobAs of commit 991d96f with merge base 91f09aa ( NEW FAILURES - The following jobs have failed:
CANCELLED JOB - The following job was cancelled. Please retry:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@@ -22,7 +22,10 @@ | |||
|
|||
@register_tosa_support_check | |||
class ToCopySupported(SupportedTOSAOperatorCheck): | |||
targets = [exir_ops.edge.aten._to_copy.default] | |||
targets = [ |
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 guess we don't lower empty
?
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.
Not as of today.
Failing test seem unrealted to PR and fails on other PR's also. |
@pytorchbot cherry-pick --onto release/0.5 -c fixnewfeature |
Add support for to_dim_order_copy With edge_compile_config.skip_dim_order = True removed, to_copy will be converted into to_dim_order_copy nodes. This commit moves our logic from to_copy into to_dim_order_copy. Signed-off-by: Oscar Andersson <[email protected]> (cherry picked from commit 135e875)
Cherry picking #7831The cherry pick PR is at #7952 and it is recommended to link a fixnewfeature cherry pick PR with an issue. The following tracker issues are updated: Details for Dev Infra teamRaised by workflow job |
Arm backend: enable dim_order (#7831) Add support for to_dim_order_copy With edge_compile_config.skip_dim_order = True removed, to_copy will be converted into to_dim_order_copy nodes. This commit moves our logic from to_copy into to_dim_order_copy. Signed-off-by: Oscar Andersson <[email protected]> (cherry picked from commit 135e875) Co-authored-by: Oscar Andersson <[email protected]>
Add support for to_dim_order_copy With edge_compile_config.skip_dim_order = True removed, to_copy will be converted into to_dim_order_copy nodes. This commit moves our logic from to_copy into to_dim_order_copy. Signed-off-by: Oscar Andersson <[email protected]>
Add support for to_dim_order_copy With edge_compile_config.skip_dim_order = True removed, to_copy will be converted into to_dim_order_copy nodes. This commit moves our logic from to_copy into to_dim_order_copy. Signed-off-by: Oscar Andersson <[email protected]>
Summary
Removes edge_compile_config.skip_dim_order = True which means that to_copy will be converted into to_dim_order_copy nodes. This commit adds support for to_dim_order_copy.
Change-Id: I46a30cd88125f3e2e26810352a1e0626bd5cce4a
cc @digantdesai @freddan80 @per @zingo