ssa_graph_builder.cc 3.5 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//   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 "paddle/fluid/framework/details/ssa_graph_builder.h"
C
chengduoZH 已提交
15
#include <utility>
Y
Yu Yang 已提交
16 17 18 19

namespace paddle {
namespace framework {
namespace details {
X
Xin Pan 已提交
20
void SSAGraphBuilder::PolishGraphToSupportDataHazards(Graph *graph) {
X
Xin Pan 已提交
21
  for (auto &var_map : graph->Get<GraphVars>("vars")) {
Y
Yu Yang 已提交
22 23
    for (auto &name_pair : var_map) {
      if (name_pair.second.size() <= 1) {
Y
Yu Yang 已提交
24
        continue;
Y
Yu Yang 已提交
25 26 27 28 29
      }
      auto it_new = name_pair.second.rbegin();
      auto it_old = name_pair.second.rbegin();
      ++it_old;
      for (; it_old != name_pair.second.rend(); it_new = it_old, ++it_old) {
X
Xin Pan 已提交
30 31
        OpHandleBase *write_op = (*it_new)->GeneratedOp();
        const auto &read_ops = (*it_old)->PendingOps();
Y
Yu Yang 已提交
32 33 34 35 36 37 38 39

        for (auto *read_op : read_ops) {
          // Manually add a dependency var from read_op to write_op;
          if (read_op == write_op) {
            // Read Write is the same op.
            continue;
          }

X
Xin Pan 已提交
40 41
          graph->nodes.emplace_back(new ir::Node(ir::Node::Type::kVariable));
          auto *dep_var = new DummyVarHandle(graph->nodes.back().get());
Y
Yu Yang 已提交
42 43
          read_op->AddOutput(dep_var);
          write_op->AddInput(dep_var);
X
Xin Pan 已提交
44
          graph->Get<GraphDepVars>("dep_vars").emplace(dep_var);
Y
Yu Yang 已提交
45 46 47 48 49 50 51
        }
      }
    }
  }
}

VarHandle *SSAGraphBuilder::CreateOrGetLatestVarHandle(
X
Xin Pan 已提交
52
    Graph *graph, const std::string &each_var_name,
Y
Yu Yang 已提交
53
    const platform::Place &place, size_t place_offset) {
X
Xin Pan 已提交
54
  auto &var_holders = graph->Get<GraphVars>("vars")[place_offset];
Y
Yu Yang 已提交
55 56 57
  auto &var_holder = var_holders[each_var_name];
  VarHandle *var = nullptr;
  if (var_holder.empty()) {
X
Xin Pan 已提交
58 59 60
    graph->nodes.emplace_back(new ir::Node(ir::Node::Type::kVariable));
    var = new VarHandle(graph->nodes.back().get(), 0, place_offset,
                        each_var_name, place);
Y
Yu Yang 已提交
61
    var_holder.emplace_back(var);
Y
Yu Yang 已提交
62
  } else {
Y
Yu Yang 已提交
63
    var = var_holder.rbegin()->get();
Y
Yu Yang 已提交
64 65 66 67
  }
  return var;
}

X
Xin Pan 已提交
68
void SSAGraphBuilder::CreateOpOutput(Graph *graph, OpHandleBase *op_handle,
Y
Yu Yang 已提交
69 70 71
                                     const std::string &each_var_name,
                                     const platform::Place &place,
                                     size_t place_offset) {
X
Xin Pan 已提交
72
  auto &vars = graph->Get<GraphVars>("vars")[place_offset][each_var_name];
Y
Yu Yang 已提交
73
  size_t version = vars.size();
X
Xin Pan 已提交
74 75 76
  graph->nodes.emplace_back(new ir::Node(ir::Node::Type::kVariable));
  auto var = new VarHandle(graph->nodes.back().get(), version, place_offset,
                           each_var_name, place);
Y
Yu Yang 已提交
77 78
  vars.emplace_back(var);
  op_handle->AddOutput(var);
Y
Yu Yang 已提交
79
}
Y
Yu Yang 已提交
80

X
Xin Pan 已提交
81
void SSAGraphBuilder::AddOutputToLeafOps(Graph *graph) {
X
Xin Pan 已提交
82
  GraphOps &all_ops = graph->Get<GraphOps>("ops");
X
Xin Pan 已提交
83 84

  for (auto &op : all_ops) {
X
Xin Pan 已提交
85
    if (!op->Outputs().empty()) {
Y
Yu Yang 已提交
86 87
      continue;
    }
X
Xin Pan 已提交
88 89
    graph->nodes.emplace_back(new ir::Node(ir::Node::Type::kVariable));
    auto *dummy_leaf = new DummyVarHandle(graph->nodes.back().get());
X
Xin Pan 已提交
90
    graph->Get<GraphDepVars>("dep_vars").emplace(dummy_leaf);
Y
Yu Yang 已提交
91 92 93
    op->AddOutput(dummy_leaf);
  }
}
Y
Yu Yang 已提交
94 95 96
}  // namespace details
}  // namespace framework
}  // namespace paddle