multi_devices_graph_builder.h 4.4 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"
Y
Yu Yang 已提交
21 22 23 24 25 26 27 28 29 30
#include "paddle/fluid/framework/details/ssa_graph_builder.h"

namespace paddle {
namespace platform {
class NCCLContextMap;
}

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

Y
Yu Yang 已提交
32 33
class MultiDevSSAGraphBuilder : public SSAGraphBuilder {
 public:
Y
Yu Yang 已提交
34
#ifdef PADDLE_WITH_CUDA
Y
Yu Yang 已提交
35 36 37 38
  MultiDevSSAGraphBuilder(const std::vector<platform::Place> &places,
                          const std::string &loss_var_name,
                          const std::unordered_set<std::string> &params,
                          const std::vector<Scope *> &local_scopes,
C
chengduoZH 已提交
39
                          platform::NCCLContextMap *nccl_ctxs,
Y
yuyang18 已提交
40
                          const BuildStrategy &strategy);
Y
Yu Yang 已提交
41 42 43 44
#else
  MultiDevSSAGraphBuilder(const std::vector<platform::Place> &places,
                          const std::string &loss_var_name,
                          const std::unordered_set<std::string> &params,
Y
Yu Yang 已提交
45
                          const std::vector<Scope *> &local_scopes,
Y
yuyang18 已提交
46
                          const BuildStrategy &strategy);
Y
Yu Yang 已提交
47
#endif
Y
Yu Yang 已提交
48

Y
Yu Yang 已提交
49
  std::unique_ptr<SSAGraph> Build(const ProgramDesc &program) const override;
Y
Yu Yang 已提交
50

51
  int GetRemoteVarDeviceId(const std::string &var_name) const override {
52 53 54 55 56 57 58
    auto got = remote_vars_devices_.find(var_name);
    if (got != remote_vars_devices_.end()) {
      return got->second;
    }
    return -1;
  }

T
wip  
typhoonzero 已提交
59
 private:
Y
Yu Yang 已提交
60
  void CreateOpHandleIOs(SSAGraph *result, const OpDesc &op,
61
                         size_t device_id) const;
T
wip  
typhoonzero 已提交
62

Y
Yu Yang 已提交
63 64 65 66 67
 private:
  std::string loss_var_name_;
  const std::vector<platform::Place> &places_;
  const std::vector<Scope *> &local_scopes_;
  std::unordered_set<std::string> grad_names_;
Y
Yu Yang 已提交
68 69 70 71

#ifdef PADDLE_WITH_CUDA
  platform::NCCLContextMap *nccl_ctxs_;
#endif
Y
Yu Yang 已提交
72 73 74

  bool IsScaleLossOp(const OpDesc &op) const;

75 76 77
  void CreateRPCOp(SSAGraph *result, const OpDesc &op, int place_id) const;
  void CreateDistTrainOp(SSAGraph *result, const OpDesc &op,
                         int place_id) const;
Y
Yu Yang 已提交
78

Y
Yu Yang 已提交
79 80 81
  /**
   * Is this operator as the end-point operator before/after send operator.
   */
Y
fix pe  
Yancey1989 已提交
82 83 84 85 86 87 88 89 90
  bool IsDistTrainOp(const OpDesc &op,
                     const std::vector<std::string> &send_vars,
                     const std::vector<std::string> &recv_vars) const;

  std::vector<std::string> FindDistTrainSendVars(
      const ProgramDesc &program) const;

  std::vector<std::string> FindDistTrainRecvVars(
      const ProgramDesc &program) const;
T
typhoonzero 已提交
91

Y
fix pe  
Yancey1989 已提交
92 93
  void ConnectOp(SSAGraph *result, OpHandleBase *op,
                 const std::string &prev_op_name) const;
Y
Yancey1989 已提交
94

T
typhoonzero 已提交
95 96
  void CreateComputationalOps(SSAGraph *result, const OpDesc &op,
                              size_t num_places) const;
Y
Yu Yang 已提交
97 98

  void CreateScaleLossGradOp(SSAGraph *result) const;
C
chengduoZH 已提交
99 100
  VarHandle *CreateReduceOp(SSAGraph *result, const std::string &og,
                            int dst_dev_id) const;
C
chengduoZH 已提交
101 102
  void CreateComputationalOp(SSAGraph *result, const OpDesc &op,
                             int dev_id) const;
Y
Yu Yang 已提交
103 104 105 106 107

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

C
chengduoZH 已提交
108 109 110 111
  int GetOpDeviceID(
      const std::vector<std::unordered_set<std::string>> &var_name_on_devices,
      const OpDesc &op) const;

C
chengduoZH 已提交
112
  void InsertAllReduceOp(SSAGraph *result, const std::string &og) const;
Y
Yu Yang 已提交
113

C
chengduoZH 已提交
114
  void CreateBroadcastOp(SSAGraph *result, const std::string &p_name,
C
chengduoZH 已提交
115
                         size_t src_dev_id) const;
C
chengduoZH 已提交
116

C
fix ci  
chengduoZH 已提交
117
  bool IsSparseGradient(
C
chengduoZH 已提交
118
      const std::unordered_map<std::string, VarDesc *> &all_vars,
C
fix ci  
chengduoZH 已提交
119
      const std::string &og) const;
Y
yuyang18 已提交
120 121 122

 private:
  BuildStrategy strategy_;
123
  mutable std::unordered_map<std::string, int> remote_vars_devices_;
C
chengduoZH 已提交
124 125 126

  void SetCommunicationContext(OpHandleBase *op_handle,
                               const platform::Place &p) const;
Y
Yu Yang 已提交
127 128 129 130
};
}  // namespace details
}  // namespace framework
}  // namespace paddle