ssa_graph_builder.cc 3.7 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(ir::Graph *graph) {
X
Xin Pan 已提交
21
  for (auto &var_map : graph->Get<GraphVars>(kGraphVars)) {
X
Xin Pan 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    for (auto &name_pair : var_map) {
      if (name_pair.second.size() <= 1) {
        continue;
      }
      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) {
        OpHandleBase *write_op = (*it_new)->GeneratedOp();
        const auto &read_ops = (*it_old)->PendingOps();

        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;
          }
          bool has_dep = false;
          for (auto *r_out : read_op->Outputs()) {
            for (auto *w_in : write_op->Inputs()) {
              if (r_out->Node() == w_in->Node()) {
                has_dep = true;
                break;
              }
            }
          }
          if (has_dep) continue;

          auto *dep_var = new DummyVarHandle(graph->CreateControlDepVar());
          read_op->AddOutput(dep_var);
          write_op->AddInput(dep_var);
X
Xin Pan 已提交
53
          graph->Get<GraphDepVars>(kGraphDepVars).emplace(dep_var);
X
Xin Pan 已提交
54 55 56 57 58 59
        }
      }
    }
  }
}

Y
Yu Yang 已提交
60
VarHandle *SSAGraphBuilder::CreateOrGetLatestVarHandle(
X
Xin Pan 已提交
61
    ir::Graph *graph, ir::Node *node, const platform::Place &place,
62
    size_t place_offset) {
X
Xin Pan 已提交
63
  auto &var_holders = graph->Get<GraphVars>(kGraphVars)[place_offset];
X
Xin Pan 已提交
64
  auto &var_holder = var_holders[node->Name()];
Y
Yu Yang 已提交
65 66
  VarHandle *var = nullptr;
  if (var_holder.empty()) {
X
polish  
Xin Pan 已提交
67
    if (node->Var()) {
X
Xin Pan 已提交
68 69 70
      var = new VarHandle(graph->CreateVarNode(node->Var()), 0, place_offset,
                          node->Name(), place);
    } else {
X
polish  
Xin Pan 已提交
71 72 73
      var = new VarHandle(
          graph->CreateEmptyNode(node->Name(), ir::Node::Type::kVariable), 0,
          place_offset, node->Name(), place);
X
Xin Pan 已提交
74
    }
Y
Yu Yang 已提交
75
    var_holder.emplace_back(var);
Y
Yu Yang 已提交
76
  } else {
Y
Yu Yang 已提交
77
    var = var_holder.rbegin()->get();
Y
Yu Yang 已提交
78 79 80 81
  }
  return var;
}

X
Xin Pan 已提交
82
void SSAGraphBuilder::CreateOpOutput(ir::Graph *graph, OpHandleBase *op_handle,
X
polish  
Xin Pan 已提交
83
                                     ir::Node *new_node,
Y
Yu Yang 已提交
84 85
                                     const platform::Place &place,
                                     size_t place_offset) {
X
Xin Pan 已提交
86 87
  auto &vars =
      graph->Get<GraphVars>(kGraphVars)[place_offset][new_node->Name()];
Y
Yu Yang 已提交
88
  size_t version = vars.size();
X
polish  
Xin Pan 已提交
89 90
  auto var =
      new VarHandle(new_node, version, place_offset, new_node->Name(), place);
Y
Yu Yang 已提交
91 92
  vars.emplace_back(var);
  op_handle->AddOutput(var);
Y
Yu Yang 已提交
93
}
Y
Yu Yang 已提交
94

X
Xin Pan 已提交
95
void SSAGraphBuilder::AddOutputToLeafOps(ir::Graph *graph) {
X
Xin Pan 已提交
96
  for (auto &op : graph->Get<GraphOps>(kGraphOps)) {
X
Xin Pan 已提交
97
    if (!op->Outputs().empty()) {
Y
Yu Yang 已提交
98 99
      continue;
    }
X
Xin Pan 已提交
100
    auto *dummy_leaf = new DummyVarHandle(graph->CreateControlDepVar());
X
Xin Pan 已提交
101
    graph->Get<GraphDepVars>(kGraphDepVars).emplace(dummy_leaf);
Y
Yu Yang 已提交
102 103 104
    op->AddOutput(dummy_leaf);
  }
}
Y
Yu Yang 已提交
105 106 107
}  // namespace details
}  // namespace framework
}  // namespace paddle