aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Tensor.hpp
diff options
context:
space:
mode:
authorRyan OShea <ryan.oshea3@arm.com>2022-02-07 11:16:23 +0000
committerryan.oshea3 <ryan.oshea3@arm.com>2022-02-07 11:24:35 +0000
commit49428b7e8432e3f8c85e99e5aaccfd1b5b2d7842 (patch)
treed6a8a9ffae3434deae2e84cb62733a9ae56c0fe1 /include/armnn/Tensor.hpp
parentec5463d394453d268706ee6213b1c6a7619d4a5d (diff)
downloadarmnn-49428b7e8432e3f8c85e99e5aaccfd1b5b2d7842.tar.gz
IVGCVSW-6711 Async Execute Test fails on 32bit raspi
* Replace memory area with vals in tensor creation Signed-off-by: Ryan OShea <ryan.oshea3@arm.com> Change-Id: Id92173a515e643d14bd9e24eac1cb834ae55bd1e
Diffstat (limited to 'include/armnn/Tensor.hpp')
-rw-r--r--include/armnn/Tensor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/armnn/Tensor.hpp b/include/armnn/Tensor.hpp
index 0095a03e52..8dbc9127b2 100644
--- a/include/armnn/Tensor.hpp
+++ b/include/armnn/Tensor.hpp
@@ -297,7 +297,7 @@ public:
const TensorShape& GetShape() const { return m_Info.GetShape(); }
TensorShape& GetShape() { return m_Info.GetShape(); }
- DataType GetDataType() const { return m_Info.GetDataType(); }
+ DataType GetDataType() const { return m_Info.GetDataType(); }
unsigned int GetNumDimensions() const { return m_Info.GetNumDimensions(); }
unsigned int GetNumBytes() const { return m_Info.GetNumBytes(); }
unsigned int GetNumElements() const { return m_Info.GetNumElements(); }