c_comm_init_op.cc 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/* Copyright (c) 2019 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. */
14
#if defined(PADDLE_WITH_NCCL)
15 16
#include <nccl.h>
#endif
17 18 19
#if defined(PADDLE_WITH_RCCL)
#include <rccl.h>
#endif
20 21 22
#if defined(PADDLE_WITH_XPU_BKCL)
#include "xpu/bkcl.h"
#endif
23 24 25
#include <string>

#include "paddle/fluid/framework/op_registry.h"
W
wanghuancoder 已提交
26

27
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL) || \
28
    defined(PADDLE_WITH_XPU_BKCL) || defined(PADDLE_WITH_CUSTOM_DEVICE)
29 30 31
#include "paddle/fluid/platform/collective_helper.h"
#endif

W
wanghuancoder 已提交
32 33 34 35 36
namespace paddle {
namespace framework {
class Scope;
}  // namespace framework
}  // namespace paddle
37

38 39 40 41 42
namespace paddle {
namespace operators {

class CCommInitOp : public framework::OperatorBase {
 public:
43 44
  CCommInitOp(const std::string& type,
              const framework::VariableNameMap& inputs,
45 46 47 48 49 50
              const framework::VariableNameMap& outputs,
              const framework::AttributeMap& attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}

  void RunImpl(const framework::Scope& scope,
               const platform::Place& place) const override {
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    if (platform::is_custom_place(place)) {
#if defined(PADDLE_WITH_CUSTOM_DEVICE)
      auto var = scope.FindVar(Input("X"));
      PADDLE_ENFORCE_NOT_NULL(
          var, platform::errors::InvalidArgument("Input con not be empty."));

      phi::ccl::CCLRootId* comm_id = var->GetMutable<phi::ccl::CCLRootId>();

      int nranks = Attr<int>("nranks");
      int rid = Attr<int>("ring_id");

      int device_id = place.device;
      if (Attr<int>("device_id") >= 0) {
        device_id = Attr<int>("device_id");
      }
      int rank_id = Attr<int>("rank");
      platform::XCCLCommContext::Instance(place.GetDeviceType())
          .CreateComm(comm_id, nranks, rank_id, device_id, rid);
#else
      PADDLE_THROW(platform::errors::PreconditionNotMet(
          "PaddlePaddle should compile with custom device."));
#endif
    } else {
74 75
// TODO(wangxi): Put this in the unified header file
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL)
76 77
      using UniqueId = ncclUniqueId;
      using CommContext = platform::NCCLCommContext;
78
#elif defined(PADDLE_WITH_XPU_BKCL)
79 80
      using UniqueId = BKCLUniqueId;
      using CommContext = platform::BKCLCommContext;
81
#else
82 83
      PADDLE_THROW(platform::errors::PreconditionNotMet(
          "PaddlePaddle should be compiled with GPU or XPU."));
84 85
#endif

86 87 88 89 90
      PADDLE_ENFORCE_EQ(
          platform::is_gpu_place(place) || platform::is_xpu_place(place),
          true,
          platform::errors::PreconditionNotMet(
              "CCommInitOp can run on gpu or xpu place only."));
91

92
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL) || \
K
Kim Yann 已提交
93
    defined(PADDLE_WITH_XPU_BKCL)
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
      auto var = scope.FindVar(Input("X"));
      PADDLE_ENFORCE_NOT_NULL(
          var, platform::errors::InvalidArgument("Input con not be empty."));

      UniqueId* comm_id = var->GetMutable<UniqueId>();

      int nranks = Attr<int>("nranks");
      int rid = Attr<int>("ring_id");

      int device_id = place.device;
      if (Attr<int>("device_id") >= 0) {
        device_id = Attr<int>("device_id");
      }
      int rank_id = Attr<int>("rank");
      CommContext::Instance().CreateComm(
          comm_id, nranks, rank_id, device_id, rid);
110
#endif
111
    }
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
  }
};

class CCommInitOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
    AddInput("X", "Raw variable contains a NCCL UniqueId instaces.");
    AddComment(R"DOC(
CCommInit operator

Initialize collective communicatoin context within this trainer
)DOC");
    AddAttr<int>("nranks", "(int) The number of ranks of distributed trainers");
    AddAttr<int>("rank",
                 "(int) The rank of the trainer in distributed training.");
127 128 129 130 131
    AddAttr<int>("device_id",
                 "(int) The deivce_id on which to initialize the communicator."
                 "Now, you only have to set this attr manually for pipeline "
                 "training. Otherwise, make it as default.")
        .SetDefault(-1);
132 133 134 135 136 137 138 139 140 141 142
    AddAttr<int>("ring_id", "(int default 0) user specified ring id")
        .SetDefault(0);
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OPERATOR(c_comm_init, ops::CCommInitOp, ops::CCommInitOpMaker);