From 19ea419e7f14d02aeb208c2fbd5a4ac55f4cb101 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 19 Jun 2018 13:09:53 +0100 Subject: COMPMID-809: Add NHWC data format on CLGEMMConvolutionLayer. Change-Id: I50e4f5e7d47e21c300f754bee2c216863075b5cf Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/136191 Tested-by: Jenkins Reviewed-by: Giorgio Arena Reviewed-by: Gian Marco Iodice --- arm_compute/core/TensorShape.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'arm_compute/core/TensorShape.h') diff --git a/arm_compute/core/TensorShape.h b/arm_compute/core/TensorShape.h index 0c3d9414e1..0340e1a644 100644 --- a/arm_compute/core/TensorShape.h +++ b/arm_compute/core/TensorShape.h @@ -136,6 +136,20 @@ public: // Make sure all empty dimensions are filled with 1 std::fill(_id.begin() + _num_dimensions, _id.end(), 1); } + /** Shifts right the tensor shape increasing its dimensions + * + * @param[in] step Rotation step + */ + void shift_right(size_t step) + { + ARM_COMPUTE_ERROR_ON(step > TensorShape::num_max_dimensions - num_dimensions()); + + std::rotate(begin(), begin() + TensorShape::num_max_dimensions - step, end()); + _num_dimensions += step; + + // Correct number dimensions to ignore trailing dimensions of size 1 + apply_dimension_correction(); + } /** Return a copy with collapsed dimensions starting from a given point. * -- cgit v1.2.1