aboutsummaryrefslogtreecommitdiff
path: root/delegate/opaque/src/Split.hpp
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2023-08-04 13:35:41 +0100
committermike.kelly <mike.kelly@arm.com>2023-08-10 15:45:09 +0000
commit4980e21193f0a14fef084a7f4b4197392f3c0845 (patch)
tree544abd9d77d5eb776114d380ddba854d583b10ca /delegate/opaque/src/Split.hpp
parent8259941977ce51254b32d5ff54bffc26a06c4780 (diff)
downloadarmnn-4980e21193f0a14fef084a7f4b4197392f3c0845.tar.gz
MLCE-1093 Reshape and concat invalid results
!android-nn-driver:10089 * Disabled SubTensors on CL and Neon Backends. * Added Axis to ViewsDescriptor to store the value where ever possible. * Updated Splitter tests to provide all the information needed in the Descriptor. * Updated Serializer and Deserializer to handle axis. Signed-off-by: Mike Kelly <mike.kelly@arm.com> Change-Id: I6a22d4750e04003689495b5e9e3c33deb37162bd
Diffstat (limited to 'delegate/opaque/src/Split.hpp')
-rw-r--r--delegate/opaque/src/Split.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/delegate/opaque/src/Split.hpp b/delegate/opaque/src/Split.hpp
index 2dbfa602fb..199f46b126 100644
--- a/delegate/opaque/src/Split.hpp
+++ b/delegate/opaque/src/Split.hpp
@@ -134,6 +134,8 @@ TfLiteStatus VisitSplitOperator(DelegateData& delegateData,
splitterDimSizes[splitDim] /= numSplits;
armnn::SplitterDescriptor splitDescriptor(numSplits, inputDimSize);
+ splitDescriptor.SetAxis(axis);
+
for (int j = 0; j < numSplits; ++j)
{
// Set the size of the views.
@@ -367,7 +369,9 @@ TfLiteStatus VisitSplitVOperator(DelegateData& delegateData,
}
armnn::SplitterDescriptor splitDescriptor(numSplits, inputDimSize);
+ splitDescriptor.SetAxis(axis);
unsigned int accumSplit = 0;
+
for (int j = 0; j < numSplits; ++j)
{
unsigned int splitSize = armnn::numeric_cast<unsigned int>(splitsTensorData[j]);