[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,7 +434,7 @@ bool checkHWRestrictions(
|
|||||||
// widht and small height
|
// widht and small height
|
||||||
// More details available with the ticket #-33366
|
// More details available with the ticket #-33366
|
||||||
|
|
||||||
if (inTileWidth > 507 && inTileHeight > 1 && inTileHeight < 64 && type != HwOpType::POOL) {
|
if (inTileWidth > 507 && inTileHeight > 1 && inTileHeight < 64 && type != HwOpType::POOL && inTileChannels != 3) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user