aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEFFTRadixStageKernel.h
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-04-15 17:44:55 +0100
committerManuel Bottini <manuel.bottini@arm.com>2021-04-16 16:34:00 +0000
commit9a81cd82a8102ee0bd69bfe4939d5c867aed15e9 (patch)
tree1844c9e1da5d76ade1188ba1db8279c35b36bae4 /src/core/NEON/kernels/NEFFTRadixStageKernel.h
parentd05f67f825fc2b4f65b95a1d81476b03c095e266 (diff)
downloadComputeLibrary-9a81cd82a8102ee0bd69bfe4939d5c867aed15e9.tar.gz
Fix bug on Implicit Padding for NEON FFT2D
Include paddings in address computation for input and output Resolves: COMPMID-4362 Change-Id: I1b34cf47e3b80b98d55fc8fbdeecbfd850d33197 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5439 Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/NEON/kernels/NEFFTRadixStageKernel.h')
-rw-r--r--src/core/NEON/kernels/NEFFTRadixStageKernel.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/NEON/kernels/NEFFTRadixStageKernel.h b/src/core/NEON/kernels/NEFFTRadixStageKernel.h
index 8a695b790f..2291a1068c 100644
--- a/src/core/NEON/kernels/NEFFTRadixStageKernel.h
+++ b/src/core/NEON/kernels/NEFFTRadixStageKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020 Arm Limited.
+ * Copyright (c) 2019-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -85,7 +85,6 @@ public:
private:
ITensor *_input;
ITensor *_output;
- bool _run_in_place;
unsigned int _Nx;
unsigned int _axis;
unsigned int _radix;
@@ -94,7 +93,7 @@ private:
void set_radix_stage_axis1(const FFTRadixStageKernelInfo &config);
using FFTFunctionPointerAxis0 = std::function<void(float *, float *, unsigned int, unsigned int, const float32x2_t &, unsigned int)>;
- using FFTFunctionPointerAxis1 = std::function<void(float *, float *, unsigned int, unsigned int, const float32x2_t &, unsigned int, unsigned int)>;
+ using FFTFunctionPointerAxis1 = std::function<void(float *, float *, unsigned int, unsigned int, const float32x2_t &, unsigned int, unsigned int, unsigned int, unsigned int)>;
FFTFunctionPointerAxis0 _func_0;
FFTFunctionPointerAxis1 _func_1;