[Relay] Support deformable Conv2D NHWC#7075
Merged
Laurawly merged 4 commits intoapache:mainfrom Dec 10, 2020
Merged
Conversation
vinx13
reviewed
Dec 10, 2020
Member
vinx13
left a comment
There was a problem hiding this comment.
there are some test cases in tests/python/relay/test_op_level5.py
Contributor
Author
Thanks for the pointer. Added 2 test cases to op level 5. I only added the infer type cases but not the execution because of the naive schedule on GPU. |
b88f4d6 to
e35b7de
Compare
vinx13
approved these changes
Dec 10, 2020
Contributor
TusharKanekiDey
pushed a commit
to TusharKanekiDey/tvm
that referenced
this pull request
Jan 20, 2021
* [Relay] Support deformable conv2D NHWC * add test case * fix lint * lint
trevor-m
pushed a commit
to neo-ai/tvm
that referenced
this pull request
Jan 21, 2021
* [Relay] Support deformable conv2D NHWC * add test case * fix lint * lint
electriclilies
pushed a commit
to electriclilies/tvm
that referenced
this pull request
Feb 18, 2021
* [Relay] Support deformable conv2D NHWC * add test case * fix lint * lint
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
PR #6999 added a TOPI compute for deformable Conv2D NHWC. This PR adds the required supports to lower NHWC deformable Conv2D from Relay so that it can be tuned by auto_scheduler.
Notes:
I didn't find a proper place to add unit tests. Please suggest the right place if we need them.cc @icemelon9 @jroesch @merrymercy @vinx13 @Laurawly