ssa_graph_builder.cc 2.4 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 20

namespace paddle {
namespace framework {
namespace details {
VarHandle *SSAGraphBuilder::CreateOrGetLatestVarHandle(
X
Xin Pan 已提交
21
    ir::Graph *graph, ir::Node *node, const platform::Place &place,
22
    size_t place_offset) {
X
Xin Pan 已提交
23
  auto &var_holders = graph->Get<GraphVars>("vars")[place_offset];
X
Xin Pan 已提交
24
  auto &var_holder = var_holders[node->Name()];
Y
Yu Yang 已提交
25 26
  VarHandle *var = nullptr;
  if (var_holder.empty()) {
X
polish  
Xin Pan 已提交
27
    if (node->Var()) {
X
Xin Pan 已提交
28 29 30
      var = new VarHandle(graph->CreateVarNode(node->Var()), 0, place_offset,
                          node->Name(), place);
    } else {
X
polish  
Xin Pan 已提交
31 32 33
      var = new VarHandle(
          graph->CreateEmptyNode(node->Name(), ir::Node::Type::kVariable), 0,
          place_offset, node->Name(), place);
X
Xin Pan 已提交
34
    }
Y
Yu Yang 已提交
35
    var_holder.emplace_back(var);
Y
Yu Yang 已提交
36
  } else {
Y
Yu Yang 已提交
37
    var = var_holder.rbegin()->get();
Y
Yu Yang 已提交
38 39 40 41
  }
  return var;
}

X
Xin Pan 已提交
42
void SSAGraphBuilder::CreateOpOutput(ir::Graph *graph, OpHandleBase *op_handle,
X
polish  
Xin Pan 已提交
43
                                     ir::Node *new_node,
Y
Yu Yang 已提交
44 45
                                     const platform::Place &place,
                                     size_t place_offset) {
X
polish  
Xin Pan 已提交
46
  auto &vars = graph->Get<GraphVars>("vars")[place_offset][new_node->Name()];
Y
Yu Yang 已提交
47
  size_t version = vars.size();
X
polish  
Xin Pan 已提交
48 49
  auto var =
      new VarHandle(new_node, version, place_offset, new_node->Name(), place);
Y
Yu Yang 已提交
50 51
  vars.emplace_back(var);
  op_handle->AddOutput(var);
Y
Yu Yang 已提交
52
}
Y
Yu Yang 已提交
53

X
Xin Pan 已提交
54
void SSAGraphBuilder::AddOutputToLeafOps(ir::Graph *graph) {
X
clean  
Xin Pan 已提交
55
  for (auto &op : graph->Get<GraphOps>("ops")) {
X
Xin Pan 已提交
56
    if (!op->Outputs().empty()) {
Y
Yu Yang 已提交
57 58
      continue;
    }
X
Xin Pan 已提交
59
    auto *dummy_leaf = new DummyVarHandle(graph->CreateControlDepVar());
X
Xin Pan 已提交
60
    graph->Get<GraphDepVars>("dep_vars").emplace(dummy_leaf);
Y
Yu Yang 已提交
61 62 63
    op->AddOutput(dummy_leaf);
  }
}
Y
Yu Yang 已提交
64 65 66
}  // namespace details
}  // namespace framework
}  // namespace paddle