aboutsummaryrefslogtreecommitdiff
path: root/delegate/classic/src/armnn_delegate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/classic/src/armnn_delegate.cpp')
-rw-r--r--delegate/classic/src/armnn_delegate.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/delegate/classic/src/armnn_delegate.cpp b/delegate/classic/src/armnn_delegate.cpp
index 45bea3d442..2483835989 100644
--- a/delegate/classic/src/armnn_delegate.cpp
+++ b/delegate/classic/src/armnn_delegate.cpp
@@ -741,10 +741,16 @@ TfLiteStatus ArmnnSubgraph::VisitNode(DelegateData& delegateData,
kTfLiteBuiltinL2Normalization);
case kTfLiteBuiltinL2Pool2d:
return VisitPooling2dOperator(delegateData,
- tfLiteContext,
- tfLiteNode,
- nodeIndex,
- kTfLiteBuiltinL2Pool2d);
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ kTfLiteBuiltinL2Pool2d);
+ case kTfLiteBuiltinLeakyRelu:
+ return VisitActivationOperator(delegateData,
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ kTfLiteBuiltinLeakyRelu);
case kTfLiteBuiltinLess:
return VisitComparisonOperator(delegateData,
tfLiteContext,