blob: 3479ddf30b13890053ca28650d8f9b8de05dd679 [file] [log] [blame]
Sadik Armagan62483be2020-10-23 17:14:43 +01001//
2// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <tensorflow/lite/builtin_ops.h>
9#include <tensorflow/lite/c/builtin_op_data.h>
10#include <tensorflow/lite/c/common.h>
11#include <tensorflow/lite/minimal_logging.h>
12
13namespace armnnDelegate
14{
15
16TfLiteStatus VisitBatchToSpaceNdOperator(DelegateData& delegateData,
17 TfLiteContext* tfLiteContext,
18 TfLiteNode* tfLiteNode,
19 int nodeIndex,
20 int32_t operatorCode)
21{
22 return kTfLiteError;
23}
24
25TfLiteStatus VisitSpaceToBatchNdOperator(DelegateData& delegateData,
26 TfLiteContext* tfLiteContext,
27 TfLiteNode* tfLiteNode,
28 int nodeIndex,
29 int32_t operatorCode)
30{
31 return kTfLiteError;
32}
33
34} // namespace armnnDelegate