aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/optimizations
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2022-09-28 10:25:40 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2022-09-28 09:57:11 +0000
commit71b386dcfaf1190fd703e9f332398a64584bf103 (patch)
treeedf551127047793a6e92aeae79eeaec08493c387 /src/armnn/optimizations
parent7804481027056c6a2aec406d4cb2ab9c39e8418d (diff)
downloadarmnn-71b386dcfaf1190fd703e9f332398a64584bf103.tar.gz
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 <teresa.charlinreyes@arm.com> Change-Id: I66a91ed1a78bc0464e00423c7fc7c28c91d199ce
Diffstat (limited to 'src/armnn/optimizations')
-rw-r--r--src/armnn/optimizations/FoldPadIntoLayer2d.hpp8
1 files changed, 4 insertions, 4 deletions
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);
}
}