From 658039bc4e06be34272eccf559a516a6b52f75f5 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Fri, 15 Sep 2017 16:30:50 +0100 Subject: COMPMID-534: Add MemoryManager support in NEON functions Adds support for: -NECannyEdge -NEConvolution -NEDirectConvolution -NEGEMM -NEGEMMLowp -NEGaussian5x5 -NEHOGDescriptor -NEHOGGradient -NEL2Normalize -NELocallyConnectedLayer -NENormalizationLayer -NEScale -NESobel5x5 -NESobel7x7 Change-Id: I68e05aa6054372fa873a882633a15fb97882c00d Reviewed-on: http://mpd-gerrit.cambridge.arm.com/87926 Reviewed-by: Pablo Tello Tested-by: Kaizen --- arm_compute/runtime/NEON/functions/NEHOGDescriptor.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'arm_compute/runtime/NEON/functions/NEHOGDescriptor.h') diff --git a/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h b/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h index b7b4909060..30989568e1 100644 --- a/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h +++ b/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h @@ -26,9 +26,13 @@ #include "arm_compute/core/NEON/kernels/NEHOGDescriptorKernel.h" #include "arm_compute/runtime/IFunction.h" +#include "arm_compute/runtime/IMemoryManager.h" +#include "arm_compute/runtime/MemoryGroup.h" #include "arm_compute/runtime/NEON/functions/NEHOGGradient.h" #include "arm_compute/runtime/Tensor.h" +#include + namespace arm_compute { class IHOG; @@ -43,7 +47,7 @@ class NEHOGDescriptor : public IFunction { public: /** Default constructor */ - NEHOGDescriptor(); + NEHOGDescriptor(std::shared_ptr memory_manager = nullptr); /** Initialise the function's source, destination, HOG data-object and border mode * * @param[in, out] input Input tensor. Data type supported: U8 @@ -59,6 +63,7 @@ public: void run() override; private: + MemoryGroup _memory_group; NEHOGGradient _gradient; NEHOGOrientationBinningKernel _orient_bin; NEHOGBlockNormalizationKernel _block_norm; -- cgit v1.2.1