aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/Split.hpp
diff options
context:
space:
mode:
authorFinn Williams <Finn.Williams@arm.com>2020-11-30 17:43:28 +0000
committerJim Flynn <jim.flynn@arm.com>2020-12-17 15:34:55 +0000
commit019840d1161738aefd6ebd32ccf4e72e618cae15 (patch)
tree4448bfb2e5d395e739cf11f66c8644b69e3874fd /delegate/src/Split.hpp
parentc11ba468017b8b06c5c0f83743575d34bad1dd3b (diff)
downloadarmnn-019840d1161738aefd6ebd32ccf4e72e618cae15.tar.gz
IVGCVSW-5374 Provide an Android build for the delegate
Signed-off-by: Finn Williams <Finn.Williams@arm.com> Change-Id: I33eb8c650be654ad891afd2295f2057f13a9d084
Diffstat (limited to 'delegate/src/Split.hpp')
-rw-r--r--delegate/src/Split.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/delegate/src/Split.hpp b/delegate/src/Split.hpp
index c76ad60ace..8248be9413 100644
--- a/delegate/src/Split.hpp
+++ b/delegate/src/Split.hpp
@@ -42,10 +42,9 @@ TfLiteStatus VisitSplitOperator(DelegateData& delegateData,
return kTfLiteError;
}
- const armnn::TensorInfo& axisTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteAxisTensor);
const armnn::TensorInfo& inputTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteInputTensor);
- ARMNN_ASSERT(axisTensorInfo.GetNumElements() == 1);
+ ARMNN_ASSERT(GetTensorInfoForTfLiteTensor(tfLiteAxisTensor).GetNumElements() == 1);
auto* axisTensorDataPtr = tflite::GetTensorData<int32_t>(&tfLiteAxisTensor);
std::vector<int32_t> axisTensorData(axisTensorDataPtr, axisTensorDataPtr + 1);
const unsigned int splitDim = axisTensorData[0];
@@ -168,9 +167,8 @@ TfLiteStatus VisitSplitVOperator(DelegateData& delegateData,
const armnn::TensorInfo& inputTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteInputTensor);
const armnn::TensorInfo& splitsTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteSplitsTensor);
ARMNN_ASSERT(splitsTensorInfo.GetNumDimensions() == 1);
+ ARMNN_ASSERT(GetTensorInfoForTfLiteTensor(tfLiteAxisTensor).GetNumElements() == 1);
- const armnn::TensorInfo& axisTensorInfo = GetTensorInfoForTfLiteTensor(tfLiteAxisTensor);
- ARMNN_ASSERT(axisTensorInfo.GetNumElements() == 1);
auto* axisTensorDataPtr = tflite::GetTensorData<int32_t>(&tfLiteAxisTensor);
std::vector<int32_t> axisTensorData(axisTensorDataPtr, axisTensorDataPtr + 1);