From d56e770e7c394d13706a21ee350e7dafe4278987 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Wed, 28 Feb 2018 14:29:36 +0000 Subject: COMPMID-979: Add NHWC data layout to the tensor's metadata (Part 2) Change-Id: I24aa35a85834abf0c9954aba714aeae654615b44 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/122646 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- arm_compute/core/TensorInfo.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'arm_compute/core/TensorInfo.h') diff --git a/arm_compute/core/TensorInfo.h b/arm_compute/core/TensorInfo.h index 27cf5bae82..97f9d03dc7 100644 --- a/arm_compute/core/TensorInfo.h +++ b/arm_compute/core/TensorInfo.h @@ -28,6 +28,7 @@ #include "ITensorInfo.h" #include "arm_compute/core/Coordinates.h" +#include "arm_compute/core/Helpers.h" #include "arm_compute/core/Strides.h" #include "arm_compute/core/TensorShape.h" #include "arm_compute/core/Types.h" @@ -228,6 +229,10 @@ public: { return _tensor_shape[index]; } + size_t dimension(DataLayoutDimension dimension) const override + { + return get_data_layout_dimension_index(_data_layout, dimension); + } const Strides &strides_in_bytes() const override { return _strides_in_bytes; -- cgit v1.2.1