aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEGaussian5x5.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEGaussian5x5.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEGaussian5x5.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEGaussian5x5.h b/arm_compute/runtime/NEON/functions/NEGaussian5x5.h
index 699e42efb4..2aae3cb513 100644
--- a/arm_compute/runtime/NEON/functions/NEGaussian5x5.h
+++ b/arm_compute/runtime/NEON/functions/NEGaussian5x5.h
@@ -28,9 +28,12 @@
#include "arm_compute/core/NEON/kernels/NEGaussian5x5Kernel.h"
#include "arm_compute/core/Types.h"
#include "arm_compute/runtime/IFunction.h"
+#include "arm_compute/runtime/IMemoryManager.h"
+#include "arm_compute/runtime/MemoryGroup.h"
#include "arm_compute/runtime/Tensor.h"
#include <cstdint>
+#include <memory>
namespace arm_compute
{
@@ -48,7 +51,7 @@ class NEGaussian5x5 : public IFunction
public:
/** Default constructor
*/
- NEGaussian5x5();
+ NEGaussian5x5(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
/** Initialise the function's input, output and border mode.
*
* @param[in, out] input Source tensor. Data type supported: U8. (Written to only for @p border_mode != UNDEFINED)
@@ -62,6 +65,7 @@ public:
void run() override;
protected:
+ MemoryGroup _memory_group; /**< Function memory group */
NEGaussian5x5HorKernel _kernel_hor; /**< kernel for horizontal pass */
NEGaussian5x5VertKernel _kernel_vert; /**< kernel for vertical pass */
Tensor _tmp; /**< temporary buffer for output of horizontal pass */