aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/KernelDescriptors.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/KernelDescriptors.h')
-rw-r--r--arm_compute/core/KernelDescriptors.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/arm_compute/core/KernelDescriptors.h b/arm_compute/core/KernelDescriptors.h
index 186dbfb6d8..83131f4296 100644
--- a/arm_compute/core/KernelDescriptors.h
+++ b/arm_compute/core/KernelDescriptors.h
@@ -26,10 +26,24 @@
namespace arm_compute
{
+/** Descriptor for FFT scale kernels */
+struct FFTScaleKernelInfo
+{
+ float scale{ 0.f }; /**< Axis to perform the kernel on. */
+ bool conjugate{ true }; /**< Flag to conjugate the output/ */
+};
+
+/** Descriptor for FFT digit reverse kernels */
+struct FFTDigitReverseKernelInfo
+{
+ unsigned int axis{ 0 }; /**< Axis to perform the kernel on. */
+ bool conjugate{ false }; /**< Flag to conjugate the output/ */
+};
+
/** Descriptor used by the FFT core kernels */
-struct FFTRadixStageKernelDescriptor
+struct FFTRadixStageKernelInfo
{
- unsigned int axis{ 0 }; /**< Axis to run the FFT on. */
+ unsigned int axis{ 0 }; /**< Axis to run the kernel on. */
unsigned int radix{ 0 }; /**< Radix to use. */
unsigned int Nx{ 0 }; /**< Nx coefficient. */
bool is_first_stage{ false }; /**< Flags if the FFT kernels is the first stage of a decomposed FFT. */