broadcast_op_handle.h 3.7 KB
Newer Older
C
chengduoZH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//   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

#include <map>
#include <string>
#include <vector>

#include "paddle/fluid/framework/details/op_handle_base.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/framework/selected_rows.h"
#include "paddle/fluid/platform/device_context.h"

W
wanghuancoder 已提交
27 28 29 30 31 32 33 34 35 36
namespace paddle {
namespace framework {
namespace details {
struct VarHandle;
}  // namespace details
namespace ir {
class Node;
}  // namespace ir
}  // namespace framework
namespace platform {
37
#if defined(PADDLE_WITH_NCCL)
W
wanghuancoder 已提交
38
struct NCCLContextMap;
39 40 41 42
#endif
#if defined(PADDLE_WITH_XPU_BKCL)
struct BKCLContextMap;
#endif
W
wanghuancoder 已提交
43 44 45
}  // namespace platform
}  // namespace paddle

46
#if defined(PADDLE_WITH_NCCL)
C
chengduoZH 已提交
47
#include "paddle/fluid/platform/nccl_helper.h"
48 49
#elif defined(PADDLE_WITH_XPU_BKCL)
#include "paddle/fluid/platform/bkcl_helper.h"
C
chengduoZH 已提交
50 51
#endif

C
chengduoZH 已提交
52 53 54 55
namespace paddle {
namespace framework {
namespace details {

C
chengduoZH 已提交
56
struct BroadcastOpHandle : public OpHandleBase {
C
chengduoZH 已提交
57
 public:
58
#if defined(PADDLE_WITH_NCCL)
X
Xin Pan 已提交
59
  BroadcastOpHandle(ir::Node *node, const std::vector<Scope *> &local_scopes,
C
chengduoZH 已提交
60 61
                    const std::vector<platform::Place> &places,
                    const platform::NCCLContextMap *nccl_ctxs)
X
Xin Pan 已提交
62 63 64 65
      : OpHandleBase(node),
        local_scopes_(local_scopes),
        places_(places),
        nccl_ctxs_(nccl_ctxs) {
C
chengduoZH 已提交
66 67
    if (nccl_ctxs_) {
      for (auto &p_ctx : nccl_ctxs_->contexts_) {
C
chengduo 已提交
68 69
        this->SetDeviceContext(platform::CUDAPlace(p_ctx.first),
                               p_ctx.second.ctx_.get());
C
chengduoZH 已提交
70 71 72
      }
    }
  }
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
#endif
#if defined(PADDLE_WITH_XPU_BKCL)
  BroadcastOpHandle(ir::Node *node, const std::vector<Scope *> &local_scopes,
                    const std::vector<platform::Place> &places,
                    const platform::BKCLContextMap *bkcl_ctxs)
      : OpHandleBase(node),
        local_scopes_(local_scopes),
        places_(places),
        bkcl_ctxs_(bkcl_ctxs) {
    if (bkcl_ctxs_) {
      for (auto &p_ctx : bkcl_ctxs_->contexts_) {
        this->SetDeviceContext(platform::XPUPlace(p_ctx.first),
                               p_ctx.second.ctx_.get());
      }
    }
  }
#endif
X
Xin Pan 已提交
90
  BroadcastOpHandle(ir::Node *node, const std::vector<Scope *> &local_scopes,
C
chengduoZH 已提交
91
                    const std::vector<platform::Place> &places)
X
Xin Pan 已提交
92
      : OpHandleBase(node), local_scopes_(local_scopes), places_(places) {}
C
chengduoZH 已提交
93 94 95

  std::string Name() const override;

96
  bool IsMultiDeviceTransfer() override { return true; };
C
chengduoZH 已提交
97 98 99 100

 protected:
  void RunImpl() override;

101 102
  std::vector<Scope *> GetLocalScopes() override { return local_scopes_; }

103 104
  void BroadcastOneVar(const VarHandle &in_var_handle,
                       const std::vector<VarHandle *> &out_var_handles,
105
                       const std::vector<Scope *> &var_scopes);
106

Y
yuyang18 已提交
107 108
  std::vector<Scope *> local_scopes_;
  std::vector<platform::Place> places_;
109
#if defined(PADDLE_WITH_NCCL)
C
chengduoZH 已提交
110
  const platform::NCCLContextMap *nccl_ctxs_;
111 112
#elif defined(PADDLE_WITH_XPU_BKCL)
  const platform::BKCLContextMap *bkcl_ctxs_;
C
chengduoZH 已提交
113
#endif
114 115 116

  void InitOutputValue(const VarHandle &in_var_handle,
                       const std::vector<VarHandle *> &out_var_handles) const;
C
chengduoZH 已提交
117
};
C
chengduoZH 已提交
118 119 120
}  // namespace details
}  // namespace framework
}  // namespace paddle