aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index 24c73ca7c1..143ee025f5 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -109,10 +109,20 @@ constexpr float SCALE_PYRAMID_ORB = 8.408964152537146130583778358414e-01;
/** Supported tensor data layouts */
enum class DataLayout
{
+ UNKNOWN,
NCHW,
NHWC
};
+/** Supported tensor data layout dimensions */
+enum class DataLayoutDimension
+{
+ CHANNEL,
+ HEIGHT,
+ WIDTH,
+ BATCHES
+};
+
/** Quantization settings (used for QASYMM8 data type) */
struct QuantizationInfo
{