summaryrefslogtreecommitdiff
path: root/compiler/tflchef/core/src/OpChefs.h
blob: 65dbd4b926434c0d5cf0bd44a6a95868eb0be772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __OP_CHEFS_H__
#define __OP_CHEFS_H__

#include "Op/Abs.h"
#include "Op/Add.h"
#include "Op/ArgMax.h"
#include "Op/AveragePool2D.h"
#include "Op/BatchToSpaceND.h"
#include "Op/Concatenation.h"
#include "Op/Conv2D.h"
#include "Op/Cos.h"
#include "Op/DepthwiseConv2D.h"
#include "Op/Div.h"
#include "Op/Equal.h"
#include "Op/Exp.h"
#include "Op/FloorDiv.h"
#include "Op/FullyConnected.h"
#include "Op/LogicalOr.h"
#include "Op/LogicalNot.h"
#include "Op/MaxPool2D.h"
#include "Op/Mean.h"
#include "Op/Mul.h"
#include "Op/Pack.h"
#include "Op/Pad.h"
#include "Op/ReLU.h"
#include "Op/ReLU6.h"
#include "Op/Reshape.h"
#include "Op/Rsqrt.h"
#include "Op/Shape.h"
#include "Op/Softmax.h"
#include "Op/Sqrt.h"
#include "Op/Sub.h"
#include "Op/Tanh.h"
#include "Op/Transpose.h"

#endif // __OP_CHEFS_H__