-
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 unpacking in conv2d int8 compute #13566
Conversation
michalpiszczek
commented
Dec 6, 2022
•
edited
Loading
edited
- Fix mismatch in expected unpacked values
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 @jfromm |
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.
@tvm-bot rerun |
@michalpiszczek you need to rebase because of 9374738 |
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.
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.
* Remove mutable defaults in mlp_model * Fix tuple unpack in conv2d nchw int8