multi_devices_graph_pass.h 3.8 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//   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
T
wip  
typhoonzero 已提交
16
#include <string>
C
chengduoZH 已提交
17
#include <utility>
T
wip  
typhoonzero 已提交
18 19
#include <vector>

Y
yuyang18 已提交
20
#include "paddle/fluid/framework/details/build_strategy.h"
X
Xin Pan 已提交
21
#include "paddle/fluid/framework/details/multi_devices_helper.h"
X
Xin Pan 已提交
22
#include "paddle/fluid/framework/ir/graph.h"
Y
Yu Yang 已提交
23 24 25 26 27 28 29 30 31

namespace paddle {
namespace platform {
class NCCLContextMap;
}

namespace framework {
class Scope;
namespace details {
C
chengduoZH 已提交
32

X
Xin Pan 已提交
33
class MultiDevSSAGraphBuilder : public ir::Pass {
X
Xin Pan 已提交
34 35
 protected:
  std::unique_ptr<ir::Graph> ApplyImpl(
X
Xin Pan 已提交
36
      std::unique_ptr<ir::Graph> graph) const override;
37

T
wip  
typhoonzero 已提交
38
 private:
X
Xin Pan 已提交
39 40
  void CreateOpHandleIOs(ir::Graph *result, ir::Node *node,
                         size_t device_id) const;
X
Xin Pan 已提交
41
  void Init() const;
T
wip  
typhoonzero 已提交
42

Y
Yu Yang 已提交
43
 private:
X
Xin Pan 已提交
44 45 46 47
  mutable std::string loss_var_name_;
  mutable std::vector<platform::Place> places_;
  mutable std::vector<Scope *> local_scopes_;
  mutable std::unordered_set<std::string> grad_names_;
Y
Yu Yang 已提交
48 49

#ifdef PADDLE_WITH_CUDA
X
Xin Pan 已提交
50
  mutable platform::NCCLContextMap *nccl_ctxs_;
Y
Yu Yang 已提交
51
#endif
Y
Yu Yang 已提交
52

X
Xin Pan 已提交
53 54
  int GetVarDeviceID(const ir::Graph &graph, const std::string &varname) const;

55
  bool IsScaleLossOp(ir::Node *node) const;
Y
Yu Yang 已提交
56

X
Xin Pan 已提交
57 58
  void CreateRPCOp(ir::Graph *result, ir::Node *node) const;
  void CreateDistTrainOp(ir::Graph *result, ir::Node *node) const;
Y
Yu Yang 已提交
59

Y
Yu Yang 已提交
60 61 62
  /**
   * Is this operator as the end-point operator before/after send operator.
   */
63
  bool IsDistTrainOp(ir::Node *node, const std::vector<std::string> &send_vars,
Y
fix pe  
Yancey1989 已提交
64 65 66
                     const std::vector<std::string> &recv_vars) const;

  std::vector<std::string> FindDistTrainSendVars(
X
Xin Pan 已提交
67
      const std::vector<ir::Node *> &nodes) const;
Y
fix pe  
Yancey1989 已提交
68 69

  std::vector<std::string> FindDistTrainRecvVars(
X
Xin Pan 已提交
70
      const std::vector<ir::Node *> &nodes) const;
T
typhoonzero 已提交
71

X
Xin Pan 已提交
72
  void ConnectOp(ir::Graph *result, OpHandleBase *op,
Y
fix pe  
Yancey1989 已提交
73
                 const std::string &prev_op_name) const;
Y
Yancey1989 已提交
74

X
Xin Pan 已提交
75
  void CreateComputationalOps(ir::Graph *result, ir::Node *node,
T
typhoonzero 已提交
76
                              size_t num_places) const;
Y
Yu Yang 已提交
77

78 79 80
  void CreateScaleLossGradOp(ir::Graph *result,
                             const std::string &loss_grad_name) const;

X
Xin Pan 已提交
81
  VarHandle *CreateReduceOp(ir::Graph *result, const std::string &og,
C
chengduoZH 已提交
82
                            int dst_dev_id) const;
X
Xin Pan 已提交
83 84
  void CreateComputationalOp(ir::Graph *result, ir::Node *node,
                             int dev_id) const;
Y
Yu Yang 已提交
85 86 87 88 89

  bool IsParameterGradientOnce(
      const std::string &og,
      std::unordered_set<std::string> *og_has_been_broadcast) const;

X
Xin Pan 已提交
90
  int GetOpDeviceID(const ir::Graph &graph, ir::Node *node) const;
C
chengduoZH 已提交
91

X
Xin Pan 已提交
92
  void InsertAllReduceOp(ir::Graph *result, const std::string &og) const;
Y
Yu Yang 已提交
93

X
Xin Pan 已提交
94
  void InsertDataBalanceOp(ir::Graph *result,
95 96
                           const std::vector<std::string> &datas) const;

X
Xin Pan 已提交
97
  void CreateBroadcastOp(ir::Graph *result, const std::string &p_name,
C
chengduoZH 已提交
98
                         size_t src_dev_id) const;
C
chengduoZH 已提交
99

Y
Yancey1989 已提交
100 101 102 103
  bool IsSparseGradient(const std::string &og) const;

  size_t GetAppropriateDeviceID(
      const std::vector<std::string> &var_names) const;
Y
yuyang18 已提交
104 105

 private:
X
Xin Pan 已提交
106
  mutable BuildStrategy strategy_;
Y
Yancey1989 已提交
107 108
  mutable std::unordered_map<std::string, VarDesc *> all_vars_;
  mutable std::vector<int64_t> balance_vars_;
C
chengduoZH 已提交
109 110 111

  void SetCommunicationContext(OpHandleBase *op_handle,
                               const platform::Place &p) const;
Y
Yu Yang 已提交
112 113 114 115
};
}  // namespace details
}  // namespace framework
}  // namespace paddle