From 71b386dcfaf1190fd703e9f332398a64584bf103 Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Wed, 28 Sep 2022 10:25:40 +0100 Subject: IVGCVSW-7209 Delay one release the removal of weights and bias * This affects only to the layers (not workloads) Conv, DWConv and FC Signed-off-by: Teresa Charlin Change-Id: I66a91ed1a78bc0464e00423c7fc7c28c91d199ce --- src/armnn/optimizations/FoldPadIntoLayer2d.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/armnn/optimizations/FoldPadIntoLayer2d.hpp') diff --git a/src/armnn/optimizations/FoldPadIntoLayer2d.hpp b/src/armnn/optimizations/FoldPadIntoLayer2d.hpp index 4c4bd80d41..7a50c4ac06 100644 --- a/src/armnn/optimizations/FoldPadIntoLayer2d.hpp +++ b/src/armnn/optimizations/FoldPadIntoLayer2d.hpp @@ -200,7 +200,7 @@ public: ARMNN_ASSERT_MSG(newConv2dLayer->GetInputSlot(1).GetConnection() != nullptr, "FoldPadIntoConvolution2d: New convolution layer is missing connection to weights layer"); - // Deprecated 22.11 + // Deprecated. Removal date is 23.02. newConv2dLayer->m_Weight = std::move(conv2dLayer->m_Weight); if (conv2dLayer->GetParameters().m_BiasEnabled) @@ -209,7 +209,7 @@ public: "FoldPadIntoConvolution2d: New convolution layer is missing " "connection to bias layer."); - // Deprecated 22.11 + // Deprecated. Removal date is 23.02. newConv2dLayer->m_Bias = std::move(conv2dLayer->m_Bias); } } @@ -234,7 +234,7 @@ public: ARMNN_ASSERT_MSG(newConv2dLayer->GetInputSlot(1).GetConnection() != nullptr, "FoldPadIntoDepthwiseConvolution2d: New convolution layer is missing connection to weights layer"); - // Deprecated 22.11 + // Deprecated. Removal date is 23.02. newConv2dLayer->m_Weight = std::move(conv2dLayer->m_Weight); if (conv2dLayer->GetParameters().m_BiasEnabled) @@ -242,7 +242,7 @@ public: ARMNN_ASSERT_MSG(newConv2dLayer->GetInputSlot(2).GetConnection() != nullptr, "FoldPadIntoConvolution2d: New convolution layer is missing " "connection to bias layer."); - // Deprecated 22.11 + // Deprecated. Removal date is 23.02. newConv2dLayer->m_Bias = std::move(conv2dLayer->m_Bias); } } -- cgit v1.2.1