aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEReductionOperation.h
diff options
context:
space:
mode:
authorSheri Zhang <sheri.zhang@arm.com>2020-09-23 11:22:50 +0100
committerSheri Zhang <sheri.zhang@arm.com>2020-10-06 09:19:36 +0000
commit4d91dc68adf8a4cc07285fe781469231230df3b9 (patch)
tree4b8b53ab30f86921031fd2b6b9ff35dfdecc222b /arm_compute/runtime/NEON/functions/NEReductionOperation.h
parent47ae441b320c0a9f79f8e6036a0b12a1bf68f9ca (diff)
downloadComputeLibrary-4d91dc68adf8a4cc07285fe781469231230df3b9.tar.gz
COMPMID-3181: Remove padding from NEReductionOperationKernel
COMPMID-3803: Remove padding from NEComplexPixelWiseMultiplicationKernel Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Change-Id: I309fc4ab62bacbca9203d2680a9d6d52f76f70e6 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4078 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-by: Pablo Marquez <pablo.tello@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEReductionOperation.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEReductionOperation.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEReductionOperation.h b/arm_compute/runtime/NEON/functions/NEReductionOperation.h
index ab6928b241..aafccb00e3 100644
--- a/arm_compute/runtime/NEON/functions/NEReductionOperation.h
+++ b/arm_compute/runtime/NEON/functions/NEReductionOperation.h
@@ -26,7 +26,6 @@
#include "arm_compute/runtime/IFunction.h"
-#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
#include "arm_compute/core/NEON/kernels/NEReductionOperationKernel.h"
#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
#include "arm_compute/runtime/Tensor.h"
@@ -37,7 +36,7 @@ class ITensor;
/** Basic function to simulate a reduction operation. This function calls the following NEON kernels:
*
- * -# @ref NEFillBorderKernel
+ * -# @ref NEReshapeLayer
* -# @ref NEReductionOperationKernel
*
*/
@@ -74,7 +73,6 @@ public:
private:
MemoryGroup _memory_group;
NEReductionOperationKernel _reduction_kernel;
- NEFillBorderKernel _fill_border_kernel;
NEReshapeLayer _reshape;
Tensor _output_internal;
size_t _window_split;