allreduce_op.h 3.1 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* 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 <algorithm>
#include <utility>
#include <vector>

#include "paddle/fluid/framework/data_type.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/op_registry.h"

24
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL)
25
#include "paddle/fluid/platform/device/gpu/nccl_helper.h"
T
tangwei12 已提交
26 27 28 29 30
#endif

namespace paddle {
namespace operators {

31
template <typename T, typename DeviceContext>
T
tangwei12 已提交
32 33 34 35
class AllReduceOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto place = ctx.GetPlace();
36 37
    PADDLE_ENFORCE_EQ(platform::is_gpu_place(place),
                      true,
T
tangwei12 已提交
38 39
                      platform::errors::PreconditionNotMet(
                          "AllReduce op can run on gpu place only for now."));
40
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL)
L
Leo Chen 已提交
41
    auto& dev_ctx = ctx.template device_context<phi::GPUContext>();
42 43
    auto in = ctx.Input<phi::DenseTensor>("X");
    auto out = ctx.Output<phi::DenseTensor>("Out");
T
tangwei12 已提交
44

45 46
    int dtype =
        platform::ToNCCLDataType(framework::TransToProtoVarType(in->dtype()));
T
tangwei12 已提交
47
    int64_t numel = in->numel();
48
    auto* sendbuff = in->data();
T
tangwei12 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    out->Resize(in->dims());
    void* recvbuff = out->mutable_data<T>(place);

    auto* comm = dev_ctx.nccl_comm();
    // FIXME(typhoonzero): should use nccl stream here.
    auto stream = dev_ctx.stream();
    PADDLE_ENFORCE_NOT_NULL(
        stream, platform::errors::NotFound("Should initialize NCCL firstly."));

    int reduce_type = ctx.Attr<int>("reduce_type");
    ncclRedOp_t red_type = ncclSum;
    switch (reduce_type) {
      case 0:
        red_type = ncclSum;
        break;
      case 1:
        red_type = ncclProd;
        break;
      case 2:
        red_type = ncclMax;
        break;
      case 3:
        red_type = ncclMin;
        break;
    }
74 75 76 77 78 79 80 81
    PADDLE_ENFORCE_GPU_SUCCESS(
        platform::dynload::ncclAllReduce(sendbuff,
                                         recvbuff,
                                         numel,
                                         static_cast<ncclDataType_t>(dtype),
                                         red_type,
                                         comm,
                                         stream));
T
tangwei12 已提交
82
    if (ctx.Attr<bool>("sync_mode")) {
83
      platform::GpuStreamSync(stream);
T
tangwei12 已提交
84 85 86 87 88 89 90 91 92 93
    }
#else
    PADDLE_THROW(platform::errors::PreconditionNotMet(
        "PaddlePaddle should compile with GPU."));
#endif
  }
};

}  // namespace operators
}  // namespace paddle