From 62483bee640e7d8accf6ac77b24c6e9828841851 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Fri, 23 Oct 2020 17:14:43 +0100 Subject: IVGCVSW-5366 'Add a do nothing SubGraph class' IVGCVSW-5373 'Implement the ABS operator in the Delegate' * Added a Switch statement into the VisitNode() function * Separated the Visit functions into the categorized source files * Implemented VisitElementwiseUnary() function * Added tests for ABS and SQRT Signed-off-by: Sadik Armagan Change-Id: If9654d0a8d8ff7dcd6fb5cbe0dc312941772affb --- delegate/src/FullyConnected.hpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 delegate/src/FullyConnected.hpp (limited to 'delegate/src/FullyConnected.hpp') diff --git a/delegate/src/FullyConnected.hpp b/delegate/src/FullyConnected.hpp new file mode 100644 index 0000000000..ad981cd63b --- /dev/null +++ b/delegate/src/FullyConnected.hpp @@ -0,0 +1,25 @@ +// +// Copyright © 2020 Arm Ltd and Contributors. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#pragma once + +#include +#include +#include +#include + +namespace armnnDelegate +{ + +TfLiteStatus VisitFullyConnectedOperator(DelegateData& delegateData, + TfLiteContext* tfLiteContext, + TfLiteNode* tfLiteNode, + int nodeIndex, + int32_t operatorCode) +{ + return kTfLiteError; +} + +} // namespace armnnDelegate -- cgit v1.2.1