multi_devices_graph_pass.h 3.5 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
#ifdef PADDLE_WITH_CUDA
X
Xin Pan 已提交
44
  mutable platform::NCCLContextMap *nccl_ctxs_;
Y
Yu Yang 已提交
45
#endif
Y
Yu Yang 已提交
46

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

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

Y
Yancey1989 已提交
51 52
  int CreateRPCOp(ir::Graph *result, ir::Node *node) const;
  int CreateDistTrainOp(ir::Graph *result, ir::Node *node) const;
Y
Yu Yang 已提交
53

Y
Yu Yang 已提交
54 55 56
  /**
   * Is this operator as the end-point operator before/after send operator.
   */
57
  bool IsDistTrainOp(ir::Node *node, const std::vector<std::string> &send_vars,
Y
fix pe  
Yancey1989 已提交
58 59 60
                     const std::vector<std::string> &recv_vars) const;

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

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

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

69 70 71
  void CreateScaleLossGradOp(ir::Graph *result,
                             const std::string &loss_grad_name) const;

X
Xin Pan 已提交
72
  VarHandle *CreateReduceOp(ir::Graph *result, const std::string &og,
C
chengduoZH 已提交
73
                            int dst_dev_id) const;
X
Xin Pan 已提交
74 75
  void CreateComputationalOp(ir::Graph *result, ir::Node *node,
                             int dev_id) const;
Y
Yu Yang 已提交
76

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

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

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

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

Y
Yancey1989 已提交
87 88 89 90
  bool IsSparseGradient(const std::string &og) const;

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

X
clean  
Xin Pan 已提交
92 93 94 95 96 97 98 99
  void SetCommunicationContext(OpHandleBase *op_handle,
                               const platform::Place &p) const;

  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_;

X
Xin Pan 已提交
100
  mutable BuildStrategy strategy_;
Y
Yancey1989 已提交
101 102
  mutable std::unordered_map<std::string, VarDesc *> all_vars_;
  mutable std::vector<int64_t> balance_vars_;
Y
Yu Yang 已提交
103 104 105 106
};
}  // namespace details
}  // namespace framework
}  // namespace paddle