• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <armnn/utility/IgnoreUnused.hpp>
9 
10 #include <tensorflow/lite/builtin_ops.h>
11 #include <tensorflow/lite/c/builtin_op_data.h>
12 #include <tensorflow/lite/c/common.h>
13 #include <tensorflow/lite/minimal_logging.h>
14 
15 namespace armnnDelegate
16 {
17 
VisitArgMinMaxOperator(DelegateData & delegateData,TfLiteContext * tfLiteContext,TfLiteNode * tfLiteNode,int nodeIndex,int32_t argMinMaxOperatorCode)18 TfLiteStatus VisitArgMinMaxOperator(DelegateData& delegateData,
19                                     TfLiteContext* tfLiteContext,
20                                     TfLiteNode* tfLiteNode,
21                                     int nodeIndex,
22                                     int32_t argMinMaxOperatorCode)
23 {
24     armnn::IgnoreUnused(delegateData,
25                         tfLiteContext,
26                         tfLiteNode,
27                         nodeIndex,
28                         argMinMaxOperatorCode);
29 
30     return kTfLiteError;
31 }
32 
33 } // namespace armnnDelegate
34