aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/BatchNormalizationLayer.hpp
diff options
context:
space:
mode:
authorFinn Williams <Finn.Williams@arm.com>2021-03-22 17:51:06 +0000
committerfinn.williams <finn.williams@arm.com>2021-04-07 16:42:38 +0000
commit4422ceca976a88aac49b21808a43e465bc87a35e (patch)
treed4f7f3d86394f74b679c907ad3f7fc7f4537933f /src/armnn/layers/BatchNormalizationLayer.hpp
parentb70ec417989490a2a72c66ecd6c737df1c094f4c (diff)
downloadarmnn-4422ceca976a88aac49b21808a43e465bc87a35e.tar.gz
Fix graph copy memory spike
* Change layer storage of ConstTensors to std::shared_ptr<ConstCpuTensorHandle> * Change clone to share ConstTensor rather than copy * Remove uses of non-const GetTensor() call * Reduce scope of non-optimized network in ExeNet, so memory can be released after use Signed-off-by: Finn Williams <Finn.Williams@arm.com> Change-Id: Ibb2c7309d12411d21405bd6024c76bcdf5404545
Diffstat (limited to 'src/armnn/layers/BatchNormalizationLayer.hpp')
-rw-r--r--src/armnn/layers/BatchNormalizationLayer.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/armnn/layers/BatchNormalizationLayer.hpp b/src/armnn/layers/BatchNormalizationLayer.hpp
index dab75d1e12..bf9e4b7917 100644
--- a/src/armnn/layers/BatchNormalizationLayer.hpp
+++ b/src/armnn/layers/BatchNormalizationLayer.hpp
@@ -16,13 +16,13 @@ class BatchNormalizationLayer : public LayerWithParameters<BatchNormalizationDes
{
public:
/// A unique pointer to store Mean values
- std::unique_ptr<ScopedCpuTensorHandle> m_Mean;
+ std::shared_ptr<ConstCpuTensorHandle> m_Mean;
/// A unique pointer to store Variance values
- std::unique_ptr<ScopedCpuTensorHandle> m_Variance;
+ std::shared_ptr<ConstCpuTensorHandle> m_Variance;
/// A unique pointer to store Beta values
- std::unique_ptr<ScopedCpuTensorHandle> m_Beta;
+ std::shared_ptr<ConstCpuTensorHandle> m_Beta;
/// A unique pointer to store Gamma values
- std::unique_ptr<ScopedCpuTensorHandle> m_Gamma;
+ std::shared_ptr<ConstCpuTensorHandle> m_Gamma;
/// Makes a workload for the BatchNormalization type.
/// @param [in] graph The graph where this layer can be found.