From 92ce35cda7c5e97eff05d6f37dc86990386309bb Mon Sep 17 00:00:00 2001 From: Tianle Cheng Date: Tue, 25 Jul 2023 16:41:00 +0100 Subject: IVGCVSW-7886 Add TILE to delegate and opaque delegate * Adding support for Tile in classic and opaque delegates * CMake files updated * Tests added Signed-off-by: Tianle Cheng Change-Id: I9b52cea3480eb71961cbccb1a346805f73b5661a --- delegate/opaque/src/armnn_delegate.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'delegate/opaque/src/armnn_delegate.cpp') diff --git a/delegate/opaque/src/armnn_delegate.cpp b/delegate/opaque/src/armnn_delegate.cpp index 510352eae9..49fa30d8f0 100644 --- a/delegate/opaque/src/armnn_delegate.cpp +++ b/delegate/opaque/src/armnn_delegate.cpp @@ -38,6 +38,7 @@ #include "Softmax.hpp" #include "SpaceDepth.hpp" #include "Split.hpp" +#include "Tile.hpp" #include "Transpose.hpp" #include "UnidirectionalSequenceLstm.hpp" #include "Unpack.hpp" @@ -1138,12 +1139,18 @@ TfLiteStatus ArmnnSubgraph::VisitNode(DelegateData& delegateData, tfLiteNode, nodeIndex, kTfLiteBuiltinTanh); + case kTfLiteBuiltinTile: + return VisitTileOperator(delegateData, + tfLiteContext, + tfLiteNode, + nodeIndex, + kTfLiteBuiltinTile); case kTfLiteBuiltinTranspose: return VisitTransposeOperator(delegateData, - tfLiteContext, - tfLiteNode, - nodeIndex, - kTfLiteBuiltinTranspose); + tfLiteContext, + tfLiteNode, + nodeIndex, + kTfLiteBuiltinTranspose); case kTfLiteBuiltinTransposeConv: return VisitConvolutionOperator(delegateData, tfLiteContext, -- cgit v1.2.1