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

namespace paddle {
namespace platform {
class NCCLContextMap;
}

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

Y
Yu Yang 已提交
31 32
class MultiDevSSAGraphBuilder : public SSAGraphBuilder {
 public:
Y
Yu Yang 已提交
33
#ifdef PADDLE_WITH_CUDA
Y
Yu Yang 已提交
34 35 36 37
  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 已提交
38
                          platform::NCCLContextMap *nccl_ctxs,
C
chengduoZH 已提交
39 40
                          bool use_default_grad_scale,
                          bool balance_parameter_opt_between_cards);
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,
C
chengduoZH 已提交
46 47
                          bool use_default_grad_scale,
                          bool balance_parameter_opt_between_cards);
Y
Yu Yang 已提交
48
#endif
Y
Yu Yang 已提交
49

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

T
wip  
typhoonzero 已提交
52
 private:
Y
Yu Yang 已提交
53
  void CreateOpHandleIOs(SSAGraph *result, const OpDesc &op,
Y
Yu Yang 已提交
54
                         size_t place_id) const;
T
wip  
typhoonzero 已提交
55

Y
Yu Yang 已提交
56 57 58 59 60
 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 已提交
61 62 63 64

#ifdef PADDLE_WITH_CUDA
  platform::NCCLContextMap *nccl_ctxs_;
#endif
C
chengduoZH 已提交
65
  bool balance_parameter_opt_between_cards_;
Y
Yu Yang 已提交
66
  bool use_default_grad_scale_;
Y
Yu Yang 已提交
67 68 69

  bool IsScaleLossOp(const OpDesc &op) const;

C
chengduoZH 已提交
70 71
  bool IsScaleLossGradOp(const OpDesc &op) const;

Y
Yu Yang 已提交
72 73
  void CreateSendOp(SSAGraph *result, const OpDesc &op) const;

Y
Yu Yang 已提交
74 75 76
  /**
   * Is this operator as the end-point operator before/after send operator.
   */
T
typhoonzero 已提交
77 78 79 80
  bool IsDistTrainOp(const OpDesc &op, OpDesc *send_op) const;

  void CreateComputationalOps(SSAGraph *result, const OpDesc &op,
                              size_t num_places) const;
Y
Yu Yang 已提交
81 82

  void CreateScaleLossGradOp(SSAGraph *result) const;
C
chengduoZH 已提交
83 84
  VarHandle *CreateReduceOp(SSAGraph *result, const std::string &og,
                            int dst_dev_id) const;
C
chengduoZH 已提交
85 86
  void CreateComputationalOp(SSAGraph *result, const OpDesc &op,
                             int dev_id) const;
Y
Yu Yang 已提交
87 88 89 90 91

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

C
chengduoZH 已提交
92 93 94 95
  int GetOpDeviceID(
      const std::vector<std::unordered_set<std::string>> &var_name_on_devices,
      const OpDesc &op) const;

Y
Yu Yang 已提交
96
  void InsertNCCLAllReduceOp(SSAGraph *result, const std::string &og) const;
Y
Yu Yang 已提交
97

C
chengduoZH 已提交
98
  void CreateBroadcastOp(SSAGraph *result, const std::string &p_name,
C
chengduoZH 已提交
99
                         size_t src_dev_id) const;
C
chengduoZH 已提交
100

Y
Yu Yang 已提交
101 102 103 104 105
  /**
   * Get send op in the global block of program.
   * nullptr if not found.
   */
  OpDesc *GetSendOpDesc(const ProgramDesc &program) const;
106

C
fix ci  
chengduoZH 已提交
107 108 109
  bool IsSparseGradient(
      const std::unordered_map<std::string, proto::VarType::Type> &var_types,
      const std::string &og) const;
Y
Yu Yang 已提交
110 111 112 113
};
}  // namespace details
}  // namespace framework
}  // namespace paddle