blob: 4f69a73281ec958647ac4c281f1145aa105c5311 [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 VisitSpaceToDepthOperator(DelegateData& delegateData,
17 TfLiteContext* tfLiteContext,
18 TfLiteNode* tfLiteNode,
19 int nodeIndex,
20 int32_t operatorCode)
21{
22 return kTfLiteError;
23}
24
25TfLiteStatus VisitDepthToSpaceOperator(DelegateData& delegateData,
26 TfLiteContext* tfLiteContext,
27 TfLiteNode* tfLiteNode,
28 int nodeIndex,
29 int32_t operatorCode)
30{
31 return kTfLiteError;
32}
33
34} // namespace armnnDelegate