-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[IE VPU] Fix condition in HW tiling #3111
[IE VPU] Fix condition in HW tiling #3111
Conversation
b054527
to
2acee0d
Compare
if (inTileWidth > 507) { | ||
return false; | ||
|
||
if (inTileWidth > 507 && inTileHeight < 64 && type != HwOpType::POOL) { |
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.
all of tiles with inTileHeight < 64 fail? Or some certain sizes?
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.
Not all of them, but there are sizes less than 64 where hangs occur.
Perhaps the constant 64 should be larger.
This constant was obtained based on a sample from #31079.
139f3a2
to
2e4c08e
Compare
2e4c08e
to
2ad3ab8
Compare
Co-authored-by: kora6 <[email protected]>
Co-authored-by: kora6 <[email protected]>
#-34250
#-33366