ngraph_bridge.cc 2.0 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 29 30 31 32

namespace paddle {
namespace framework {

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>>>)>>
33
    NgraphBridge::NG_NODE_MAP = {
34
        {"fill_constant", paddle::operators::ngraphs::BuildFillConstantNode},
M
mozga-intel 已提交
35 36
        {"mean", paddle::operators::ngraphs::BuildMeanNode},
        {"mean_grad", paddle::operators::ngraphs::BuildMeanGradNode},
37 38
        {"mul", paddle::operators::ngraphs::BuildMulNode},
        {"mul_grad", paddle::operators::ngraphs::BuildMulGradNode},
M
mozga-intel 已提交
39
        {"scale", paddle::operators::ngraphs::BuildScaleNode},
40
        {"relu", paddle::operators::ngraphs::BuildUnaryNode<ngraph::op::Relu>},
M
mozga-intel 已提交
41 42
        {"tanh", paddle::operators::ngraphs::BuildUnaryNode<ngraph::op::Tanh>},
        {"top_k", paddle::operators::ngraphs::BuildTopKNode}};
B
baojun-nervana 已提交
43

B
baojun-nervana 已提交
44
void NgraphBridge::BuildNgNode(const std::shared_ptr<OperatorBase>& op) {
B
baojun-nervana 已提交
45
  auto& op_type = op->Type();
B
baojun-nervana 已提交
46
  NG_NODE_MAP[op_type](op, ngb_node_map_);
B
baojun-nervana 已提交
47 48 49 50
}

}  // namespace framework
}  // namespace paddle