diff --git a/inference-engine/src/vpu/graph_transformer/src/middleend/hw/tiling.cpp b/inference-engine/src/vpu/graph_transformer/src/middleend/hw/tiling.cpp index 2da235b66a9..66fb431f053 100644 --- a/inference-engine/src/vpu/graph_transformer/src/middleend/hw/tiling.cpp +++ b/inference-engine/src/vpu/graph_transformer/src/middleend/hw/tiling.cpp @@ -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; }