aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers
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/layers
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/layers')
-rw-r--r--src/armnn/layers/Convolution2dLayer.hpp4
-rw-r--r--src/armnn/layers/DepthwiseConvolution2dLayer.hpp4
-rw-r--r--src/armnn/layers/FullyConnectedLayer.hpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/armnn/layers/Convolution2dLayer.hpp b/src/armnn/layers/Convolution2dLayer.hpp
index 185a67252d..02ae05f83b 100644
--- a/src/armnn/layers/Convolution2dLayer.hpp
+++ b/src/armnn/layers/Convolution2dLayer.hpp
@@ -17,10 +17,10 @@ class Convolution2dLayer : public LayerWithParameters<Convolution2dDescriptor>
public:
/// A unique pointer to store Weight values.
- /// @Note: Deprecated. Removal date is 22.11. Weights are stored in ConstantLayers now.
+ /// @Note: Deprecated. Removal date is 23.02. Weights are stored in ConstantLayers now.
std::shared_ptr<ConstTensorHandle> m_Weight;
/// A unique pointer to store Bias values.
- /// @Note: Deprecated. Removal date is 22.11. Bias are stored in ConstantLayers now.
+ /// @Note: Deprecated. Removal date is 23.02. Bias are stored in ConstantLayers now.
std::shared_ptr<ConstTensorHandle> m_Bias;
/// Makes a workload for the Convolution2d type.
diff --git a/src/armnn/layers/DepthwiseConvolution2dLayer.hpp b/src/armnn/layers/DepthwiseConvolution2dLayer.hpp
index 9b0e6ad8c6..baae7f122a 100644
--- a/src/armnn/layers/DepthwiseConvolution2dLayer.hpp
+++ b/src/armnn/layers/DepthwiseConvolution2dLayer.hpp
@@ -16,10 +16,10 @@ class DepthwiseConvolution2dLayer : public LayerWithParameters<DepthwiseConvolut
{
public:
/// A unique pointer to store Weight values.
- /// @Note Deprecated. Bias are stored in ConstantLayers now.
+ /// @Note Deprecated. Removal date is 23.02. Weights are stored in ConstantLayers now.
std::shared_ptr<ConstTensorHandle> m_Weight;
/// A unique pointer to store Bias values.
- /// @Note Deprecated. Bias are stored in ConstantLayers now.
+ /// @Note Deprecated. Removal date is 23.02. Bias are stored in ConstantLayers now.
std::shared_ptr<ConstTensorHandle> m_Bias;
/// Makes a workload for the DepthwiseConvolution2d type.
diff --git a/src/armnn/layers/FullyConnectedLayer.hpp b/src/armnn/layers/FullyConnectedLayer.hpp
index 09dbb5f33a..07f4a936f9 100644
--- a/src/armnn/layers/FullyConnectedLayer.hpp
+++ b/src/armnn/layers/FullyConnectedLayer.hpp
@@ -16,10 +16,10 @@ class FullyConnectedLayer : public LayerWithParameters<FullyConnectedDescriptor>
{
public:
/// A unique pointer to store Weight values.
- /// @Note: Deprecated. Weights are stored in ConstantLayers now.
+ /// @Note: Deprecated. Removal date is 23.02. Weights are stored in ConstantLayers now.
std::shared_ptr<ConstTensorHandle> m_Weight;
/// A unique pointer to store Bias values.
- /// @Note: Deprecated. Bias are stored in ConstantLayers now.
+ /// @Note: Deprecated. Removal date is 23.02. Bias are stored in ConstantLayers now.
std::shared_ptr<ConstTensorHandle> m_Bias;
/// Makes a workload for the FullyConnected type.