From e5604e6dd73866710bac51f6c005a1eaa2be5326 Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Mon, 29 Jul 2019 15:53:51 +0100 Subject: IVGCVSW-3540 Fixed PReLU Being Skipped * PReLU layers were being skipped due to logic error. Signed-off-by: Mike Kelly Change-Id: Ic0ec707da784b44d72958dee02901b0173b25e5c --- ConversionUtils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConversionUtils.hpp b/ConversionUtils.hpp index 759514d6..0c00a16f 100644 --- a/ConversionUtils.hpp +++ b/ConversionUtils.hpp @@ -1035,7 +1035,7 @@ LayerInputHandle ConvertToLayerInputHandle(const HalOperation& operation, data.m_Backends, isSupported, tensorPin.GetConstTensor().GetInfo()); - if (isSupported) + if (!isSupported) { return LayerInputHandle(); } -- cgit v1.2.1