nccl_op.cc 7.6 KB
Newer Older
D
Dong Zhihong 已提交
1 2 3 4 5 6 7 8 9 10 11
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
   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. */

12 13
#include "paddle/framework/op_registry.h"
#include "paddle/operators/nccl/nccl_gpu_common.h"
D
dongzhihong 已提交
14 15 16 17

namespace paddle {
namespace operators {

D
Dong Zhihong 已提交
18
// NCCLinitOp
19
class NCCLInitOp : public framework::OperatorBase {
D
Dong Zhihong 已提交
20
 public:
21 22 23 24 25 26 27 28 29 30 31 32
  NCCLInitOp(const std::string &type, const framework::VariableNameMap &inputs,
             const framework::VariableNameMap &outputs,
             const framework::AttributeMap &attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}

  void Run(const framework::Scope &scope,
           const platform::DeviceContext &dev_ctx) const override {
    const auto &name = Output("Communicator");
    PADDLE_ENFORCE_NOT_NULL(scope.FindVar(name),
                            "Can not find variable '%s' in the scope.", name);
    std::vector<int> gpus = Attr<std::vector<int>>("gpus");
    PADDLE_ENFORCE(!gpus.empty(), "Attr(gpus) should not be empty.");
D
dzhwinter 已提交
33 34 35 36 37

    if (scope.FindVar(name) == nullptr) {
      PADDLE_THROW("Output(Communicator) is needed for ncclInit operator.");
    }

38 39 40
    platform::Communicator *comm =
        scope.FindVar(name)->GetMutable<platform::Communicator>();
    comm->InitAll(gpus);
D
Dong Zhihong 已提交
41 42 43 44 45 46 47 48 49 50
  }
};

class NCCLInitOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  NCCLInitOpMaker(framework::OpProto *proto,
                  framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddOutput("Communicator",
              "Create Communicator for communicating between gpus");
D
Dong Zhihong 已提交
51 52 53
    AddAttr<std::vector<int>>("gpus", "gpu id lists");
    AddAttr<int>("data_type", "output data type")
        .SetDefault(framework::DataType::FP32);
D
Dong Zhihong 已提交
54 55 56 57 58 59 60
    AddComment(R"DOC(
               create communicator.
        )DOC");
  }
};

// AllReduceOp
D
dzhwinter 已提交
61
class NCCLAllReduceOp : public framework::OperatorWithKernel {
D
dongzhihong 已提交
62 63 64 65
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
D
Dong Zhihong 已提交
66 67 68
  void InferShape(framework::InferShapeContext *ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("X"),
                   " Input(X) of AllReduce op input should not be NULL");
D
Dong Zhihong 已提交
69 70 71
    PADDLE_ENFORCE(
        ctx->HasInput("Communicator"),
        " Input(Communicator) of AllReduce op input should not be NULL");
D
Dong Zhihong 已提交
72 73
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   " Input(X) of AllReduce op input should not be NULL");
D
dongzhihong 已提交
74

D
Dong Zhihong 已提交
75
    auto x_dims = ctx->GetInputsDim("X");
D
dongzhihong 已提交
76

D
Dong Zhihong 已提交
77 78 79 80
    std::string reduction = ctx->Attrs().Get<std::string>("reduction");
    PADDLE_ENFORCE((reduction == "ncclSum" || reduction == "ncclProd" ||
                    reduction == "ncclMin" || reduction == "ncclMax"),
                   "invalid reduction.");
D
dongzhihong 已提交
81

D
Dong Zhihong 已提交
82 83
    ctx->SetOutputsDim("Out", x_dims);
    ctx->ShareLoD("X", /*->*/ "Out");
D
dzhwinter 已提交
84 85 86
  }
};

D
Dong Zhihong 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100
// ReduceOp
class NCCLReduceOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(framework::InferShapeContext *ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("X"),
                   " Input(X) of Reduce op input should not be NULL");
    PADDLE_ENFORCE(
        ctx->HasInput("Communicator"),
        " Input(Communicator) of Reduce op input should not be NULL");
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   " Input(X) of Reduce op input should not be NULL");
D
Dong Zhihong 已提交
101

D
Dong Zhihong 已提交
102 103 104 105 106
    std::string reduction = ctx->Attrs().Get<std::string>("reduction");
    PADDLE_ENFORCE((reduction == "ncclSum" || reduction == "ncclProd" ||
                    reduction == "ncclMin" || reduction == "ncclMax"),
                   "invalid reduction.");

D
Dong Zhihong 已提交
107 108 109
    auto x_dims = ctx->GetInputsDim("X");
    ctx->SetOutputsDim("Out", x_dims);
    ctx->ShareLoD("X", /*->*/ "Out");
D
Dong Zhihong 已提交
110 111 112
  }
};

D
Dong Zhihong 已提交
113 114
// BcastOp
class NCCLBcastOp : public framework::OperatorWithKernel {
D
Dong Zhihong 已提交
115 116 117 118 119 120 121 122 123 124 125
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(framework::InferShapeContext *ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("X"),
                   " Input(X) of Bcast op input should not be NULL");
    PADDLE_ENFORCE(ctx->HasInput("Communicator"),
                   " Input(Communicator) of Bcast op input should not be NULL");
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
                   " Output(Out) of Bcast op output should not be NULL");
D
Dong Zhihong 已提交
126

D
Dong Zhihong 已提交
127
    int root = ctx->Attrs().Get<int>("root");
D
Dong Zhihong 已提交
128
    PADDLE_ENFORCE(root != platform::kInvalidGPUId, "Bcast root must be set.");
D
Dong Zhihong 已提交
129

D
Dong Zhihong 已提交
130 131 132
    auto x_dims = ctx->GetInputsDim("X");
    ctx->SetOutputsDim("Out", x_dims);
    ctx->ShareLoD("X", /*->*/ "Out");
D
Dong Zhihong 已提交
133 134 135
  }
};

D
Dong Zhihong 已提交
136
// AllreduceOp
D
dzhwinter 已提交
137
class NCCLAllReduceOpMaker : public framework::OpProtoAndCheckerMaker {
D
Dong Zhihong 已提交
138
 public:
D
Dong Zhihong 已提交
139 140 141
  NCCLAllReduceOpMaker(framework::OpProto *proto,
                       framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
D
dzhwinter 已提交
142
    AddInput("X", "The input of AllReduce op");
D
Dong Zhihong 已提交
143
    AddInput("Communicator", "Communicator for communicating between gpus");
D
dzhwinter 已提交
144
    AddOutput("Out", "The output of AllReduce op");
D
Dong Zhihong 已提交
145 146 147
    AddAttr<std::string>("reduction",
                         "{'ncclMin', 'ncclMax', 'ncclProd', 'ncclSum'}.")
        .SetDefault("ncclSum");
D
dzhwinter 已提交
148 149 150 151
    AddComment(R"DOC(
            AllReduce the input tensors.
        )DOC");
  }
D
dongzhihong 已提交
152
};
D
dzhwinter 已提交
153

D
Dong Zhihong 已提交
154 155
// ReduceOp
class NCCLReduceOpMaker : public framework::OpProtoAndCheckerMaker {
D
Dong Zhihong 已提交
156
 public:
D
Dong Zhihong 已提交
157 158
  NCCLReduceOpMaker(framework::OpProto *proto,
                    framework::OpAttrChecker *op_checker)
D
Dong Zhihong 已提交
159
      : OpProtoAndCheckerMaker(proto, op_checker) {
D
Dong Zhihong 已提交
160
    AddInput("X", "The input of Reduce op");
D
Dong Zhihong 已提交
161
    AddInput("Communicator", "Communicator for communicating between gpus");
D
Dong Zhihong 已提交
162
    AddOutput("Out", "The output of Reduce op");
D
Dong Zhihong 已提交
163 164 165
    AddAttr<std::string>("reduction",
                         "{'ncclMin', 'ncclMax', 'ncclProd', 'ncclSum'}.")
        .SetDefault("ncclSum");
D
Dong Zhihong 已提交
166
    AddAttr<int>("root",
D
Dong Zhihong 已提交
167 168 169
                 "root gpu of the parameter. if not "
                 "set(platform::kInvalidGPUId). hashed by name.")
        .SetDefault(platform::kInvalidGPUId);
D
Dong Zhihong 已提交
170
    AddComment(R"DOC(
D
Dong Zhihong 已提交
171
            Reduce the tensors)DOC");
D
Dong Zhihong 已提交
172 173 174
  }
};

D
Dong Zhihong 已提交
175
// BcastOp
D
Dong Zhihong 已提交
176
class NCCLBcastOpMaker : public framework::OpProtoAndCheckerMaker {
D
Dong Zhihong 已提交
177
 public:
D
Dong Zhihong 已提交
178 179
  NCCLBcastOpMaker(framework::OpProto *proto,
                   framework::OpAttrChecker *op_checker)
D
Dong Zhihong 已提交
180
      : OpProtoAndCheckerMaker(proto, op_checker) {
D
Dong Zhihong 已提交
181
    AddInput("X", "The input of BcastSend op");
D
Dong Zhihong 已提交
182
    AddInput("Communicator", "Communicator for communicating between gpus");
D
Dong Zhihong 已提交
183
    AddOutput("Out", "The output of Bcast");
D
Dong Zhihong 已提交
184
    AddAttr<int>("root",
D
Dong Zhihong 已提交
185 186 187
                 "root gpu of the parameter. if not "
                 "set(platform::kInvalidGPUId). hashed by name.")
        .SetDefault(platform::kInvalidGPUId);
D
Dong Zhihong 已提交
188 189 190 191 192
    AddComment(R"DOC(
            Bcast the tensors.
        )DOC");
  }
};
D
dzhwinter 已提交
193

D
Dong Zhihong 已提交
194 195 196 197
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
198 199 200
REGISTER_OPERATOR(ncclInit, ops::NCCLInitOp,
                  paddle::framework::EmptyGradOpMaker, ops::NCCLInitOpMaker);

D
Dong Zhihong 已提交
201 202
REGISTER_OP_WITHOUT_GRADIENT(ncclAllReduce, ops::NCCLAllReduceOp,
                             ops::NCCLAllReduceOpMaker);
D
Dong Zhihong 已提交
203 204
REGISTER_OP_WITHOUT_GRADIENT(ncclBcast, ops::NCCLBcastOp,
                             ops::NCCLBcastOpMaker);
D
Dong Zhihong 已提交
205 206
REGISTER_OP_WITHOUT_GRADIENT(ncclReduce, ops::NCCLReduceOp,
                             ops::NCCLReduceOpMaker);