-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[TOPI] Fix tuple unpack in conv2d NCHWc int8 #13761
Conversation
Thanks for contributing to TVM! Please refer to the contributing guidelines https://tvm.apache.org/docs/contribute/ for useful information and tips. Please request code reviews from Reviewers by @-ing them in a comment.
Generated by tvm-bot |
cc @jwfromm |
@tvm-bot rerun |
I know it's a miniature PR, but https://tvm.apache.org/docs/contribute/pull_request.html#commit-message-guideline |
@tvm-bot rerun |
Looks like this needs to be linted. I think its also worth throwing in a comment explaining this explicit unpacking helps improve flexibility with other incoming layouts. |
@tvm-bot rerun |
1 similar comment
@tvm-bot rerun |
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.
LGTM!
Fixes a tuple being incorrectly unpacked (too many elements expected) in a Conv2D TOPI int8 op, similarly to apache#13566 which addressed the issue specifically in the ARM implementation (which calls the function modified in this PR). This explicit unpacking helps improve flexibility with other incoming layouts.
Fixes a tuple being incorrectly unpacked (too many elements expected) in a Conv2D TOPI int8 op, similarly to #13566 which addressed the issue specifically in the ARM implementation (which calls the function modified in this PR).
This explicit unpacking helps improve flexibility with other incoming layouts.