aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEAccumulate.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-11-28 14:59:47 +0000
committerMichalis Spyrou <michalis.spyrou@arm.com>2018-11-30 15:15:07 +0000
commit95abfddfa08ab85d4f88c6f4d2e077969178f2d5 (patch)
treedd6124e42635423cf01b4b9face5c983c67cb0e4 /arm_compute/runtime/NEON/functions/NEAccumulate.h
parenteb6aad7e1eee0c0659ea71444ed4093c52267af3 (diff)
downloadComputeLibrary-95abfddfa08ab85d4f88c6f4d2e077969178f2d5.tar.gz
COMPMID-1815 Remove templates from NEFillborderKernel and create INESimpleFunctionNoBorder
Change-Id: Ia9fdc75b23e9a6208058f8406fb7b5fcd917de2c Reviewed-on: https://review.mlplatform.org/311 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEAccumulate.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEAccumulate.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEAccumulate.h b/arm_compute/runtime/NEON/functions/NEAccumulate.h
index de532c37a0..36b8bec3aa 100644
--- a/arm_compute/runtime/NEON/functions/NEAccumulate.h
+++ b/arm_compute/runtime/NEON/functions/NEAccumulate.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2017 ARM Limited.
+ * Copyright (c) 2016-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -24,7 +24,7 @@
#ifndef __ARM_COMPUTE_NEACCUMULATE_H__
#define __ARM_COMPUTE_NEACCUMULATE_H__
-#include "arm_compute/runtime/NEON/INESimpleFunction.h"
+#include "arm_compute/runtime/NEON/INESimpleFunctionNoBorder.h"
#include <cstdint>
@@ -33,7 +33,7 @@ namespace arm_compute
class ITensor;
/** Basic function to run @ref NEAccumulateKernel */
-class NEAccumulate : public INESimpleFunction
+class NEAccumulate : public INESimpleFunctionNoBorder
{
public:
/** Set the input and accumulation tensors
@@ -45,7 +45,7 @@ public:
};
/** Basic function to run @ref NEAccumulateWeightedKernel */
-class NEAccumulateWeighted : public INESimpleFunction
+class NEAccumulateWeighted : public INESimpleFunctionNoBorder
{
public:
/** Set the input and accumulation tensors, and the scale value
@@ -59,7 +59,7 @@ public:
};
/** Basic function to run @ref NEAccumulateSquaredKernel */
-class NEAccumulateSquared : public INESimpleFunction
+class NEAccumulateSquared : public INESimpleFunctionNoBorder
{
public:
/** Set the input and accumulation tensors and the shift value.
@@ -70,5 +70,5 @@ public:
*/
void configure(const ITensor *input, uint32_t shift, ITensor *output);
};
-}
+} // namespace arm_compute
#endif /*__ARM_COMPUTE_NEACCUMULATE_H__ */