[microNPU] Fix offloading incompatible average pool#11469
Merged
manupak merged 1 commit intoapache:mainfrom Jun 30, 2022
Merged
[microNPU] Fix offloading incompatible average pool#11469manupak merged 1 commit intoapache:mainfrom
manupak merged 1 commit intoapache:mainfrom
Conversation
677e7c2 to
1accdee
Compare
Contributor
Author
|
@tvm-bot rerun |
1368ce4 to
dcff5ed
Compare
Fixes offloading a few corner cases of average pooling. Specifically not offloading nn.avg_pool2d when: * The attribute count_include_pad=True * Padding exceeds the dimensions [3, 3, 4, 4] * The pool size is greater than [8, 8] when the pool uses padding Change-Id: I7be546e28ebe1f17482f3ed3cee56996a71bfcd1
dcff5ed to
88cef62
Compare
Contributor
Author
|
This is finally green :) |
Contributor
|
Might be better to add a test for to cover this case. |
Contributor
Author
|
Sure! Might be best to do in a follow up (CI seems quite flaky atm) |
manupak
approved these changes
Jun 30, 2022
Contributor
lhutton1
added a commit
to lhutton1/tvm
that referenced
this pull request
Jun 30, 2022
Follow up for apache#11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
lhutton1
added a commit
to lhutton1/tvm
that referenced
this pull request
Jul 5, 2022
Follow up for apache#11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
blackkker
pushed a commit
to blackkker/tvm
that referenced
this pull request
Jul 7, 2022
Fixes offloading a few corner cases of average pooling. Specifically not offloading nn.avg_pool2d when: * The attribute count_include_pad=True * Padding exceeds the dimensions [3, 3, 4, 4] * The pool size is greater than [8, 8] when the pool uses padding Change-Id: I7be546e28ebe1f17482f3ed3cee56996a71bfcd1
manupak
pushed a commit
that referenced
this pull request
Jul 8, 2022
Follow up for #11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
masahi
pushed a commit
to masahi/tvm
that referenced
this pull request
Jul 15, 2022
Fixes offloading a few corner cases of average pooling. Specifically not offloading nn.avg_pool2d when: * The attribute count_include_pad=True * Padding exceeds the dimensions [3, 3, 4, 4] * The pool size is greater than [8, 8] when the pool uses padding Change-Id: I7be546e28ebe1f17482f3ed3cee56996a71bfcd1
masahi
pushed a commit
to masahi/tvm
that referenced
this pull request
Jul 15, 2022
Follow up for apache#11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
junrushao
pushed a commit
to yelite/tvm
that referenced
this pull request
Jul 27, 2022
Follow up for apache#11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
xinetzone
pushed a commit
to daobook/tvm
that referenced
this pull request
Nov 25, 2022
Follow up for apache#11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
mikeseven
pushed a commit
to mikeseven/tvm
that referenced
this pull request
Sep 27, 2023
Fixes offloading a few corner cases of average pooling. Specifically not offloading nn.avg_pool2d when: * The attribute count_include_pad=True * Padding exceeds the dimensions [3, 3, 4, 4] * The pool size is greater than [8, 8] when the pool uses padding Change-Id: I7be546e28ebe1f17482f3ed3cee56996a71bfcd1
mikeseven
pushed a commit
to mikeseven/tvm
that referenced
this pull request
Sep 27, 2023
Follow up for apache#11469. Change-Id: I474b1d43d3abc6b66d35ebcf3ad6fea50becfb97
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.
Fixes offloading a few corner cases of average pooling. Specifically not offloading nn.avg_pool2d when:
cc @Mousius @NicolaLancellotti @ekalda @manupa-arm