From 93f0ad0016a6450670fbf650568f5724c7bbb63e Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Thu, 23 Mar 2023 15:28:02 +0000 Subject: GitHub #640 Add support for CEIL operator * Reference workload * TfLite Delegate * TfLite Parser * Serializer and Deserializer * Changed fallback tests in delegate to use COS instead of CEIL Signed-off-by: Teresa Charlin Signed-off-by: Mike Kelly Change-Id: I36e0dbff33694182d1dba0c95d463506428e2f04 --- delegate/classic/src/armnn_delegate.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'delegate/classic/src/armnn_delegate.cpp') diff --git a/delegate/classic/src/armnn_delegate.cpp b/delegate/classic/src/armnn_delegate.cpp index b494a36769..9b4a7d3b86 100644 --- a/delegate/classic/src/armnn_delegate.cpp +++ b/delegate/classic/src/armnn_delegate.cpp @@ -602,6 +602,12 @@ TfLiteStatus ArmnnSubgraph::VisitNode(DelegateData& delegateData, tfLiteNode, nodeIndex, kTfLiteBuiltinCast); + case kTfLiteBuiltinCeil: + return VisitElementwiseUnaryOperator(delegateData, + tfLiteContext, + tfLiteNode, + nodeIndex, + armnn::UnaryOperation::Ceil); case kTfLiteBuiltinConcatenation: return VisitControlOperator(delegateData, tfLiteContext, -- cgit v1.2.1