[IE][VPU]: update the condition for tiling for HWops (#4482)
* The condition for tiling for HWops was changed. It fixes some performance degradation issues
This commit is contained in:
parent
1d5562c266
commit
74d763ebf6
@ -434,8 +434,8 @@ bool checkHWRestrictions(
|
||||
// widht and small height
|
||||
// More details available with the ticket #-33366
|
||||
|
||||
if (inTileWidth > 507 && inTileHeight > 1 && inTileHeight < 64 && type != HwOpType::POOL) {
|
||||
return false;
|
||||
if (inTileWidth > 507 && inTileHeight > 1 && inTileHeight < 64 && type != HwOpType::POOL && inTileChannels != 3) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const int chansPerBlock = 1 << static_cast<int>(mode);
|
||||
|
Loading…
Reference in New Issue
Block a user