[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:
Aleksandr Korolev 2021-03-02 21:34:44 +03:00 committed by GitHub
parent 1d5562c266
commit 74d763ebf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
} }