From 2117020cbbf9f0bfa56ae07391635328b268a76e Mon Sep 17 00:00:00 2001 From: Aleksandr Korolev Date: Mon, 18 Jan 2021 10:27:44 +0300 Subject: [PATCH] [IE][VPU]: changing condition in HW tiling (#3695) --- .../src/vpu/graph_transformer/src/middleend/hw/tiling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }