-
Notifications
You must be signed in to change notification settings - Fork 350
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
Add support for upsample_nearest2d op in the Arm backend #5746
base: main
Are you sure you want to change the base?
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/5746
Note: Links to docs will display an error until the docs builds have been completed. ❌ 4 New Failures, 1 Cancelled JobAs of commit 4fb9443 with merge base 03b1ef2 (): 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. |
@pytorchbot label ciflow/trunk |
Can't add following labels to PR: ciflow/trunk. Please ping one of the reviewers for help. |
Please seek CI approval before scheduling CIFlow labels |
|
||
|
||
test_data_suite = [ | ||
# (test_name, test_data, size, scale_factor, compare_outputs) |
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.
❤️ these test. Awesome!
Please rebase? |
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
baf427b
to
5c042d3
Compare
Thanks for the review. I rebased the change and fixed the conflicts. |
5c042d3
to
8f769fe
Compare
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Internal checker found these type issues, can you please fix and rebase? Thanks.
|
8f769fe
to
cf7310c
Compare
Thanks, the last change should fix this. |
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
still seems like a type errors on op_upsample_nearest2d.py:48 get_resize_parameters for 3rd arg expected |
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Also rebase? |
cf7310c
to
533d9db
Compare
Thanks, I rebased and fixed the issue. |
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
1 similar comment
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Sorry rebase? |
8eea28f
to
675d0ac
Compare
@digantdesai Thanks, done |
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
If CI is not green, please make it a Draft PR |
The failure doesn't seem to be related to this PR as it's the new |
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Rebase please? |
Change-Id: Id0b742214e5432957b2f573b4218f09a4d9734e4
675d0ac
to
4fb9443
Compare
Add support for the
torch.ops.aten.upsample_nearest2d.vec
operator in the Arm backend.The
torch.ops.aten.upsample_nearest2d.vec
operator is added to the operators to not decompose so that it can directly be legalized to atosa.resize
operator.Change-Id: Id0b742214e5432957b2f573b4218f09a4d9734e4