ngraph_ops.h 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* 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. */

/*
 * This file contains the list of the ngraph operators for Paddle.
 *
 * ATTENTION: It requires some C++11 features, for lower version C++ or C, we
 * might release another API.
 */

#pragma once

24
#include "ops/accuracy_op.h"
25
#include "ops/activation_op.h"
26
#include "ops/batch_norm_op.h"
27
#include "ops/binary_unary_op.h"
28
#include "ops/conv2d_op.h"
29
#include "ops/cross_entropy_op.h"
30
#include "ops/elementwise_add_op.h"
31
#include "ops/fill_constant_op.h"
M
mozga-intel 已提交
32
#include "ops/mean_op.h"
33
#include "ops/mul_op.h"
34
#include "ops/pool2d_op.h"
M
mozga-intel 已提交
35
#include "ops/scale_op.h"
36
#include "ops/softmax_op.h"
37
#include "ops/sum_op.h"
M
mozga-intel 已提交
38
#include "ops/top_k_op.h"