ngraph_bridge.cc 2.7 KB
Newer Older
B
baojun-nervana 已提交
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. */

#include <algorithm>
#include <functional>
B
baojun-nervana 已提交
17
#include <vector>
B
baojun-nervana 已提交
18

19
#include "ngraph/ngraph.hpp"
20
#include "paddle/fluid/operators/ngraph/ngraph_bridge.h"
21
#include "paddle/fluid/operators/ngraph/ngraph_ops.h"
B
baojun-nervana 已提交
22
#include "paddle/fluid/platform/enforce.h"
23
#include "paddle/fluid/platform/ngraph_helper.h"
B
baojun-nervana 已提交
24 25

namespace paddle {
26
namespace operators {
B
baojun-nervana 已提交
27

28
namespace NG_OPS = paddle::operators::ngraphs;
B
baojun-nervana 已提交
29
std::map<std::string,
30
         std::function<void(const std::shared_ptr<framework::OperatorBase>&,
B
baojun-nervana 已提交
31 32
                            std::shared_ptr<std::unordered_map<
                                std::string, std::shared_ptr<ngraph::Node>>>)>>
33
    NgraphBridge::NG_NODE_MAP = {
34
        {"accuracy", NG_OPS::BuildAccuracyNode},
35 36
        {"conv2d", NG_OPS::BuildConv2dNode},
        {"conv2d_grad", NG_OPS::BuildConv2dGradNode},
37 38
        {"batch_norm", NG_OPS::BuildBatchNormNode},
        {"batch_norm_grad", NG_OPS::BuildBatchNormGradNode},
39 40
        {"elementwise_add", NG_OPS::BuildElementwiseAddNode},
        {"elementwise_add_grad", NG_OPS::BuildElementwiseAddGradNode},
41 42 43 44 45
        {"fill_constant", NG_OPS::BuildFillConstantNode},
        {"mean", NG_OPS::BuildMeanNode},
        {"mean_grad", NG_OPS::BuildMeanGradNode},
        {"mul", NG_OPS::BuildMulNode},
        {"mul_grad", NG_OPS::BuildMulGradNode},
46 47
        {"pool2d", NG_OPS::BuildPool2dNode},
        {"pool2d_grad", NG_OPS::BuildPool2dGradNode},
48 49 50
        {"softmax", NG_OPS::BuildSoftmaxNode},
        {"softmax_grad", NG_OPS::BuildSoftmaxGradNode},
        {"scale", NG_OPS::BuildScaleNode},
51 52
        {"sigmoid", NG_OPS::BuildUnaryNode<ngraph::op::Sigmoid>},
        {"sum", NG_OPS::BuildSumNode},
53
        {"relu", NG_OPS::BuildUnaryNode<ngraph::op::Relu>},
54
        {"relu_grad", NG_OPS::BuildReluGradNode},
55
        {"tanh", NG_OPS::BuildUnaryNode<ngraph::op::Tanh>},
56
        {"tanh_grad", NG_OPS::BuildTanhGradNode},
57 58 59 60
        {"top_k", NG_OPS::BuildTopKNode}};

void NgraphBridge::BuildNgNode(
    const std::shared_ptr<framework::OperatorBase>& op) {
B
baojun-nervana 已提交
61
  auto& op_type = op->Type();
B
baojun-nervana 已提交
62
  NG_NODE_MAP[op_type](op, ngb_node_map_);
B
baojun-nervana 已提交
63 64
}

65
}  // namespace operators
B
baojun-nervana 已提交
66
}  // namespace paddle