aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Transpose.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/Transpose.cpp')
-rw-r--r--src/armnnUtils/Transpose.cpp59
1 files changed, 46 insertions, 13 deletions
diff --git a/src/armnnUtils/Transpose.cpp b/src/armnnUtils/Transpose.cpp
index 3457cacd65..a8e4a1cb81 100644
--- a/src/armnnUtils/Transpose.cpp
+++ b/src/armnnUtils/Transpose.cpp
@@ -9,7 +9,6 @@
#include "Half.hpp"
-#include <cassert>
#include <cstring>
namespace
@@ -23,7 +22,13 @@ public:
TransposeLoop(const armnn::TensorShape& srcShape, const armnn::PermutationVector& mappings)
: m_SrcShape(srcShape)
{
- assert(srcShape.GetNumDimensions() == mappings.GetSize());
+ if (srcShape.GetNumDimensions() != mappings.GetSize())
+ {
+ std::stringstream msg;
+ msg << "Transpose: Number of shape dimensions (" << srcShape.GetNumDimensions() <<
+ ") does not match the size of the mappings (" << mappings.GetSize() << ")";
+ throw armnn::InvalidArgumentException(msg.str());
+ }
const size_type numDims = srcShape.GetNumDimensions();
@@ -42,9 +47,18 @@ public:
void Unroll(const void* srcData, void* dstData, size_t dataTypeSize)
{
- assert(srcData);
- assert(dstData);
- assert(dataTypeSize > 0);
+ if (srcData == nullptr)
+ {
+ throw armnn::Exception("Transpose: Source Data pointer is null");
+ }
+ if (dstData == nullptr)
+ {
+ throw armnn::Exception("Transpose: Destination Data pointer is null");
+ }
+ if (dataTypeSize == 0)
+ {
+ throw armnn::Exception("Transpose: dataTypeSize is zero");
+ }
const unsigned char* srcDataPtr = reinterpret_cast<const unsigned char*>(srcData);
unsigned char* dstDataPtr = reinterpret_cast<unsigned char*>(dstData);
@@ -61,13 +75,26 @@ private:
const unsigned char* srcEnd, unsigned char* dstEnd,
size_t dataTypeSize)
{
- assert(srcData);
- assert(dstData);
- assert(srcEnd);
- assert(dstEnd);
- assert(srcData < srcEnd);
- assert(dstData < dstEnd);
- assert(dataTypeSize > 0);
+ if (srcData == nullptr)
+ {
+ throw armnn::Exception("Transpose: Source Data pointer is null");
+ }
+ if (dstData == nullptr)
+ {
+ throw armnn::Exception("Transpose: Destination Data pointer is null");
+ }
+ if (srcEnd == nullptr)
+ {
+ throw armnn::Exception("Transpose: Source End pointer is null");
+ }
+ if (dstEnd == nullptr)
+ {
+ throw armnn::Exception("Transpose: Destination End is zero");
+ }
+ if (dataTypeSize == 0)
+ {
+ throw armnn::Exception("Transpose: dataTypeSize is invalid");
+ }
if (dimension >= m_SrcShape.GetNumDimensions())
{
@@ -97,7 +124,13 @@ namespace armnnUtils
armnn::TensorShape TransposeTensorShape(const armnn::TensorShape& srcShape, const armnn::PermutationVector& mappings)
{
- assert(srcShape.GetNumDimensions() == mappings.GetSize());
+ if (srcShape.GetNumDimensions() != mappings.GetSize())
+ {
+ std::stringstream msg;
+ msg << "Transpose: Number of shape dimensions (" << srcShape.GetNumDimensions() <<
+ ") does not match the size of the mappings (" << mappings.GetSize() << ")";
+ throw armnn::InvalidArgumentException(msg.str());
+ }
const unsigned int numDims = mappings.GetSize();
unsigned int outDims[armnn::MaxNumOfTensorDimensions];