ngraph_bridge.cc 2.3 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"
B
baojun-nervana 已提交
20
#include "paddle/fluid/framework/ngraph_bridge.h"
B
baojun-nervana 已提交
21
#include "paddle/fluid/framework/operator.h"
22
#include "paddle/fluid/operators/ngraph/ngraph_ops.h"
B
baojun-nervana 已提交
23
#include "paddle/fluid/platform/enforce.h"
24
#include "paddle/fluid/platform/ngraph_helper.h"
B
baojun-nervana 已提交
25 26 27 28

namespace paddle {
namespace framework {

29
namespace NG_OPS = paddle::operators::ngraphs;
B
baojun-nervana 已提交
30 31 32 33
std::map<std::string,
         std::function<void(const std::shared_ptr<OperatorBase>&,
                            std::shared_ptr<std::unordered_map<
                                std::string, std::shared_ptr<ngraph::Node>>>)>>
34
    NgraphBridge::NG_NODE_MAP = {
35 36
        {"elementwise_add", NG_OPS::BuildElementwiseAddNode},
        {"elementwise_add_grad", NG_OPS::BuildElementwiseAddGradNode},
37
        {"fill_constant", paddle::operators::ngraphs::BuildFillConstantNode},
M
mozga-intel 已提交
38 39
        {"mean", paddle::operators::ngraphs::BuildMeanNode},
        {"mean_grad", paddle::operators::ngraphs::BuildMeanGradNode},
40 41
        {"mul", paddle::operators::ngraphs::BuildMulNode},
        {"mul_grad", paddle::operators::ngraphs::BuildMulGradNode},
42 43
        {"softmax", paddle::operators::ngraphs::BuildSoftmaxNode},
        {"softmax_grad", paddle::operators::ngraphs::BuildSoftmaxGradNode},
M
mozga-intel 已提交
44
        {"scale", paddle::operators::ngraphs::BuildScaleNode},
45
        {"relu", paddle::operators::ngraphs::BuildUnaryNode<ngraph::op::Relu>},
M
mozga-intel 已提交
46 47
        {"tanh", paddle::operators::ngraphs::BuildUnaryNode<ngraph::op::Tanh>},
        {"top_k", paddle::operators::ngraphs::BuildTopKNode}};
B
baojun-nervana 已提交
48

B
baojun-nervana 已提交
49
void NgraphBridge::BuildNgNode(const std::shared_ptr<OperatorBase>& op) {
B
baojun-nervana 已提交
50
  auto& op_type = op->Type();
B
baojun-nervana 已提交
51
  NG_NODE_MAP[op_type](op, ngb_node_map_);
B
baojun-nervana 已提交
52 53 54 55
}

}  // namespace framework
}  // namespace paddle