op_symbols.h 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2018 PaddlePaddle Authors. 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. */

#pragma once

L
liuruilong 已提交
17 18 19 20 21 22 23
#include "operators/prelu_op.h"
#include "operators/fusion_conv_add_prelu_op.h"
#include "operators/fusion_conv_add_add_prelu_op.h"
#include "operators/bilinear_interp_op.h"
#include "operators/conv_transpose_op.h"
#include "operators/crf_op.h"
#include "operators/flatten_op.h"
24 25 26 27
#include "operators/batchnorm_op.h"
#include "operators/box_coder_op.h"
#include "operators/concat_op.h"
#include "operators/conv_op.h"
L
liuruilong 已提交
28
#include "operators/depthwise_conv_op.h"
L
liuruilong 已提交
29
#include "operators/dropout_op.h"
30 31 32 33
#include "operators/elementwise_add_op.h"
#include "operators/feed_op.h"
#include "operators/fetch_op.h"
#include "operators/fusion_conv_add.h"
L
liuruilong 已提交
34 35 36
#include "operators/fusion_conv_add_bn_op.h"
#include "operators/fusion_conv_add_relu_op.h"
#include "operators/fusion_conv_bn_add_relu_op.h"
37
#include "operators/fusion_conv_add_bn_relu_op.h"
L
liuruilong 已提交
38 39
#include "operators/fusion_conv_bn_relu_op.h"
#include "operators/fusion_dwconv_bn_relu_op.h"
L
liuruilong 已提交
40
#include "operators/fusion_elementwise_add_relu_op.h"
41
#include "operators/fusion_fc_op.h"
L
liuruilong 已提交
42 43
#include "operators/fusion_fc_relu_op.h"
#include "operators/gru_op.h"
44
#include "operators/im2sequence_op.h"
L
liuruilong 已提交
45
#include "operators/lookup_op.h"
46 47 48 49 50 51 52
#include "operators/lrn_op.h"
#include "operators/mul_op.h"
#include "operators/multiclass_nms_op.h"
#include "operators/pool_op.h"
#include "operators/prior_box_op.h"
#include "operators/relu_op.h"
#include "operators/reshape_op.h"
L
liuruilong 已提交
53 54 55
#include "operators/resize_op.h"
#include "operators/scale_op.h"
#include "operators/shape_op.h"
56
#include "operators/sigmoid_op.h"
L
liuruilong 已提交
57
#include "operators/slice_op.h"
58
#include "operators/softmax_op.h"
L
liuruilong 已提交
59
#include "operators/split_op.h"
60
#include "operators/transpose_op.h"