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.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arm_compute/core/KernelDescriptors.h b/arm_compute/core/KernelDescriptors.h
index 83131f4296..fe59365d06 100644
--- a/arm_compute/core/KernelDescriptors.h
+++ b/arm_compute/core/KernelDescriptors.h
@@ -48,5 +48,16 @@ struct FFTRadixStageKernelInfo
unsigned int Nx{ 0 }; /**< Nx coefficient. */
bool is_first_stage{ false }; /**< Flags if the FFT kernels is the first stage of a decomposed FFT. */
};
+
+/** Descriptor used by the GEMM kernels */
+struct GEMMKernelInfo
+{
+ unsigned int m{ 0 };
+ unsigned int n{ 0 };
+ unsigned int k{ 0 };
+ unsigned int depth_output_gemm3d{ 0 };
+ bool reinterpret_input_as_3d{ false };
+ bool broadcast_bias{ false };
+};
} // namespace arm_compute
#endif /* __ARM_COMPUTE_CORE_KERNEL_DESCRIPTORS_H__ */