From 28e3d9faaa22d6ac837072e159a313ca444274a2 Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Wed, 7 Aug 2019 14:55:04 +0100 Subject: IVGCVSW-3540 Fixed PReLU Being Skipped * PReLU layers were being skipped due to logic error. Resubmitting due to accidental reversion. Signed-off-by: Mike Kelly Change-Id: I6aeed11519d19ba7ec8b4993694e414f58799028 --- ConversionUtils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConversionUtils.hpp b/ConversionUtils.hpp index 9471d781..32efa540 100644 --- a/ConversionUtils.hpp +++ b/ConversionUtils.hpp @@ -1041,7 +1041,7 @@ LayerInputHandle ConvertToLayerInputHandle(const HalOperation& operation, data.m_Backends, isSupported, tensorPin.GetConstTensor().GetInfo()); - if (isSupported) + if (!isSupported) { return LayerInputHandle(); } -- cgit v1.2.1