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

#include "operators/batchnorm_op.h"
L
liuruilong 已提交
18
#include "operators/bilinear_interp_op.h"
19 20 21
#include "operators/box_coder_op.h"
#include "operators/concat_op.h"
#include "operators/conv_op.h"
L
liuruilong 已提交
22 23
#include "operators/conv_transpose_op.h"
#include "operators/crf_op.h"
L
liuruilong 已提交
24
#include "operators/depthwise_conv_op.h"
L
liuruilong 已提交
25
#include "operators/dropout_op.h"
26 27 28
#include "operators/elementwise_add_op.h"
#include "operators/feed_op.h"
#include "operators/fetch_op.h"
L
liuruilong 已提交
29
#include "operators/flatten_op.h"
30
#include "operators/fusion_conv_add.h"
L
liuruilong 已提交
31
#include "operators/fusion_conv_add_add_prelu_op.h"
L
liuruilong 已提交
32
#include "operators/fusion_conv_add_bn_op.h"
L
liuruilong 已提交
33 34
#include "operators/fusion_conv_add_bn_relu_op.h"
#include "operators/fusion_conv_add_prelu_op.h"
L
liuruilong 已提交
35 36
#include "operators/fusion_conv_add_relu_op.h"
#include "operators/fusion_conv_bn_add_relu_op.h"
L
liuruilong 已提交
37 38
#include "operators/fusion_conv_bn_relu_op.h"
#include "operators/fusion_dwconv_bn_relu_op.h"
L
liuruilong 已提交
39
#include "operators/fusion_elementwise_add_relu_op.h"
40
#include "operators/fusion_fc_op.h"
L
liuruilong 已提交
41 42
#include "operators/fusion_fc_relu_op.h"
#include "operators/gru_op.h"
43
#include "operators/im2sequence_op.h"
L
liuruilong 已提交
44
#include "operators/lookup_op.h"
45 46 47 48
#include "operators/lrn_op.h"
#include "operators/mul_op.h"
#include "operators/multiclass_nms_op.h"
#include "operators/pool_op.h"
L
liuruilong 已提交
49
#include "operators/prelu_op.h"
50 51 52
#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"