aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2018-12-06 12:03:17 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2018-12-07 16:25:45 +0000
commitf9afc791662f9ffd639a9500de8c4e33394c8c39 (patch)
tree26b3203c189f0a0f280e8fab4fd081f2d6112da3 /include
parentba563c6d81bfb20f01b1b54e27fe1ac4a494ece1 (diff)
downloadarmnn-f9afc791662f9ffd639a9500de8c4e33394c8c39.tar.gz
IVGCVSW-2268 Remove the input swizzling from ParseConcat
* Removed the input swizzling when the concatenation dimension is 3 in ParseConcat in the TF parser * No longer using the helper ProcessConcatInputTensorInfo, where the input was being swizzled if the concatenation dimension was 3 * Added a new convenience constuctor to TensorShape that initializes a shape to all zeros given only the number of dimensions Change-Id: I82a207e41bddc5fea21a0b5a38eafa24ad75d1c2
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Tensor.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/armnn/Tensor.hpp b/include/armnn/Tensor.hpp
index e69d1a956c..f4d7f9f984 100644
--- a/include/armnn/Tensor.hpp
+++ b/include/armnn/Tensor.hpp
@@ -21,6 +21,8 @@ public:
/// Empty (invalid) constructor.
TensorShape();
+ TensorShape(unsigned int numDimensions);
+
TensorShape(unsigned int numDimensions, const unsigned int* dimensionSizes);
TensorShape(std::initializer_list<unsigned int> dimensionSizeList);