ssa_graph_builder.h 2.5 KB
Newer Older
Y
Yu Yang 已提交
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.

#pragma once

Y
Yu Yang 已提交
17 18
#include <memory>
#include <string>
X
Xin Pan 已提交
19
#include <vector>
Y
Yu Yang 已提交
20

Y
Yu Yang 已提交
21 22 23 24
#include "paddle/fluid/framework/details/ssa_graph.h"
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/platform/place.h"

X
Xin Pan 已提交
25 26
#include "paddle/fluid/framework/ir/graph.h"

Y
Yu Yang 已提交
27 28 29 30
namespace paddle {
namespace framework {
namespace details {

X
Xin Pan 已提交
31 32 33 34 35 36
typedef std::vector<
    std::unordered_map<std::string, std::vector<std::unique_ptr<VarHandle>>>>
    GraphVars;
typedef std::unordered_set<std::unique_ptr<VarHandleBase>> GraphDepVars;
typedef std::vector<std::unique_ptr<OpHandleBase>> GraphOps;

Y
Yu Yang 已提交
37 38 39 40
class SSAGraphBuilder {
 public:
  SSAGraphBuilder() {}
  virtual ~SSAGraphBuilder() {}
X
Xin Pan 已提交
41
  virtual std::unique_ptr<Graph> Build(const ProgramDesc &program) const = 0;
Y
yi.wu 已提交
42
  virtual int GetVarDeviceID(const std::string &var_name) const = 0;
Y
Yu Yang 已提交
43 44 45 46 47 48 49 50 51 52 53

  DISABLE_COPY_AND_ASSIGN(SSAGraphBuilder);

 protected:
  /**
   * We only handle write after read(WAR), since it should not have a write
   * after write in program. If there are write after write operators, we need
   * prune them.
   *
   * https://en.wikipedia.org/wiki/Hazard_(computer_architecture)#Write_after_read_(WAR)
   */
X
Xin Pan 已提交
54
  static void PolishGraphToSupportDataHazards(Graph *graph);
Y
Yu Yang 已提交
55

X
Xin Pan 已提交
56
  static VarHandle *CreateOrGetLatestVarHandle(Graph *graph,
Y
Yu Yang 已提交
57 58 59 60
                                               const std::string &each_var_name,
                                               const platform::Place &place,
                                               size_t place_offset);

Y
Yu Yang 已提交
61 62
  // Add an output variable (each_var_name, place, place_offset) to op_handle,
  // which belongs to graph
X
Xin Pan 已提交
63
  static void CreateOpOutput(Graph *graph, OpHandleBase *op_handle,
Y
Yu Yang 已提交
64 65
                             const std::string &each_var_name,
                             const platform::Place &place, size_t place_offset);
Y
Yu Yang 已提交
66

X
Xin Pan 已提交
67
  static void AddOutputToLeafOps(Graph *graph);
Y
Yu Yang 已提交
68 69 70 71
};
}  // namespace details
}  // namespace framework
}  // namespace paddle