summaryrefslogtreecommitdiff
path: root/compiler/tflchef/core/src/OpChefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/tflchef/core/src/OpChefs.h')
-rw-r--r--compiler/tflchef/core/src/OpChefs.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/compiler/tflchef/core/src/OpChefs.h b/compiler/tflchef/core/src/OpChefs.h
new file mode 100644
index 000000000..65dbd4b92
--- /dev/null
+++ b/compiler/tflchef/core/src/OpChefs.h
@@ -0,0 +1,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__