[IE][VPU]: changing condition in HW tiling (#3695)

This commit is contained in:
Aleksandr Korolev 2021-01-18 10:27:44 +03:00 committed by GitHub
parent 99b83e9238
commit 2117020cbb
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
// More details available with the ticket #-33366
if (inTileWidth > 507 && inTileHeight < 64 && type != HwOpType::POOL) {
if (inTileWidth > 507 && inTileHeight > 1 && inTileHeight < 64 && type != HwOpType::POOL) {
return false;
}