Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / compiler / tflchef / tflite / src / TFliteOpChefs.h
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __TFLITE_OP_CHEFS_H__
18 #define __TFLITE_OP_CHEFS_H__
19
20 // In alphabet order
21 #include "Op/Abs.h"
22 #include "Op/Add.h"
23 #include "Op/AddN.h"
24 #include "Op/ArgMax.h"
25 #include "Op/ArgMin.h"
26 #include "Op/AveragePool2D.h"
27 #include "Op/BatchMatMul.h"
28 #include "Op/BatchToSpaceND.h"
29 #include "Op/Cast.h"
30 #include "Op/Ceil.h"
31 #include "Op/Concatenation.h"
32 #include "Op/Conv2D.h"
33 #include "Op/Cos.h"
34 #include "Op/DepthToSpace.h"
35 #include "Op/DepthwiseConv2D.h"
36 #include "Op/Div.h"
37 #include "Op/ELU.h"
38 #include "Op/Equal.h"
39 #include "Op/Exp.h"
40 #include "Op/ExpandDims.h"
41 #include "Op/Fill.h"
42 #include "Op/Floor.h"
43 #include "Op/FloorDiv.h"
44 #include "Op/FloorMod.h"
45 #include "Op/FullyConnected.h"
46 #include "Op/Gather.h"
47 #include "Op/GatherNd.h"
48 #include "Op/Greater.h"
49 #include "Op/GreaterEqual.h"
50 #include "Op/L2Normalize.h"
51 #include "Op/L2Pool2D.h"
52 #include "Op/LeakyRelu.h"
53 #include "Op/Less.h"
54 #include "Op/LessEqual.h"
55 #include "Op/LocalResponseNormalization.h"
56 #include "Op/Log.h"
57 #include "Op/LogicalAnd.h"
58 #include "Op/LogicalNot.h"
59 #include "Op/LogicalOr.h"
60 #include "Op/Logistic.h"
61 #include "Op/LogSoftmax.h"
62 #include "Op/MatrixDiag.h"
63 #include "Op/MatrixSetDiag.h"
64 #include "Op/Maximum.h"
65 #include "Op/MaxPool2D.h"
66 #include "Op/Mean.h"
67 #include "Op/Minimum.h"
68 #include "Op/MirrorPad.h"
69 #include "Op/Mul.h"
70 #include "Op/Neg.h"
71 #include "Op/NonMaxSuppressionV4.h"
72 #include "Op/NotEqual.h"
73 #include "Op/OneHot.h"
74 #include "Op/Pack.h"
75 #include "Op/Pad.h"
76 #include "Op/PadV2.h"
77 #include "Op/Pow.h"
78 #include "Op/PRelu.h"
79 #include "Op/Range.h"
80 #include "Op/Rank.h"
81 #include "Op/ReduceAny.h"
82 #include "Op/ReduceMax.h"
83 #include "Op/ReduceMin.h"
84 #include "Op/ReduceProd.h"
85 #include "Op/ReLU.h"
86 #include "Op/ReLU6.h"
87 #include "Op/ReLUN1To1.h"
88 #include "Op/Reshape.h"
89 #include "Op/ResizeBilinear.h"
90 #include "Op/ResizeNearestNeighbor.h"
91 #include "Op/ReverseSequence.h"
92 #include "Op/ReverseV2.h"
93 #include "Op/Round.h"
94 #include "Op/Rsqrt.h"
95 #include "Op/ScatterNd.h"
96 #include "Op/SegmentSum.h"
97 #include "Op/Select.h"
98 #include "Op/SelectV2.h"
99 #include "Op/Shape.h"
100 #include "Op/Sin.h"
101 #include "Op/Slice.h"
102 #include "Op/Softmax.h"
103 #include "Op/SpaceToBatchND.h"
104 #include "Op/SpaceToDepth.h"
105 #include "Op/SparseToDense.h"
106 #include "Op/Split.h"
107 #include "Op/SplitV.h"
108 #include "Op/Sqrt.h"
109 #include "Op/Square.h"
110 #include "Op/SquaredDifference.h"
111 #include "Op/Squeeze.h"
112 #include "Op/StridedSlice.h"
113 #include "Op/Sub.h"
114 #include "Op/Sum.h"
115 #include "Op/Tanh.h"
116 #include "Op/Tile.h"
117 #include "Op/TopKV2.h"
118 #include "Op/Transpose.h"
119 #include "Op/TransposeConv.h"
120 #include "Op/Unique.h"
121 #include "Op/Unpack.h"
122 #include "Op/Where.h"
123 #include "Op/ZerosLike.h"
124
125 #endif // __TFLITE_OP_CHEFS_H__