all_reduce.cc 8.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2020 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.

15
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL)
16 17 18

#include "paddle/fluid/imperative/all_reduce.h"

19
#ifdef PADDLE_WITH_NCCL
20
#include <nccl.h>
21 22 23 24 25
#endif

#ifdef PADDLE_WITH_RCCL
#include <rccl.h>
#endif
26 27

#include "paddle/fluid/framework/scope.h"
28
#include "paddle/fluid/framework/selected_rows_utils.h"
29
#include "paddle/fluid/framework/variable.h"
30
#include "paddle/fluid/imperative/parallel_context.h"
31
#include "paddle/fluid/platform/device/gpu/nccl_helper.h"
32 33 34
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/string/string_helper.h"

35 36
namespace paddle {
namespace imperative {
37

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
static const platform::Place &GetVarPlace(const framework::Variable &src) {
  if (src.IsType<framework::LoDTensor>()) {
    return src.Get<framework::LoDTensor>().place();
#if NCCL_VERSION_CODE >= 2212
  } else if (src.IsType<framework::SelectedRows>()) {
    return src.Get<framework::SelectedRows>().value().place();
#endif
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "Cannot get unsupported variable type %s for imperative allreduce, "
        "only "
        "LoDTensor and SelectedRows are supported.",
        platform::demangle(framework::ToTypeName(src.Type()))));
  }
}
53 54

static void AllReduce(const framework::Tensor &src, framework::Tensor *dst,
55
                      const gpuStream_t stream,
56
                      const platform::NCCLComm *comm) {
57 58 59 60 61 62
  const auto &place = src.place();
  PADDLE_ENFORCE_EQ(
      platform::is_gpu_place(place), true,
      platform::errors::Unimplemented(
          "Imperative mode does not support multi-CPU training yet."));

63
  const void *src_ptr = src.data();
64 65 66
  dst->Resize(src.dims());
  auto *dst_ptr = dst->mutable_data(src.place(), src.type());
  auto nccl_dtype = platform::ToNCCLDataType(src.type());
67
  PADDLE_ENFORCE_GPU_SUCCESS(platform::dynload::ncclAllReduce(
68 69
      src_ptr, dst_ptr, src.numel(), nccl_dtype, ncclSum, comm->comm(),
      stream));
70 71 72 73 74
}

#if NCCL_VERSION_CODE >= 2212
static void AllReduce(const framework::SelectedRows &src,
                      framework::SelectedRows *dst,
75
                      const ParallelStrategy &strategy,
76
                      const gpuStream_t stream,
77
                      const platform::NCCLComm *comm) {
78
  VLOG(3) << "SelectedRows AllReduce start";
79 80 81 82 83 84 85 86 87 88 89
  const auto &src_tensor = src.value();
  const auto &place = src_tensor.place();
  PADDLE_ENFORCE_EQ(
      platform::is_gpu_place(place), true,
      platform::errors::Unimplemented(
          "Imperative mode does not support multi-CPU training yet."));

  auto dtype = src_tensor.type();
  auto nccl_dtype = platform::ToNCCLDataType(dtype);
  auto *dev_ctx = static_cast<platform::CUDADeviceContext *>(
      platform::DeviceContextPool::Instance().Get(place));
90 91

  bool use_calc_stream = (dev_ctx->stream() == stream);
92 93 94 95 96 97

  // 1. Gather rows number from all workers. Here use ncclAllGather to do this,
  // but we can use other ways to implement is in the future
  const auto &src_rows = src.rows();
  framework::Vector<int64_t> rows_num_vector(strategy.nranks_);
  rows_num_vector[strategy.local_rank_] = static_cast<int64_t>(src_rows.size());
98
  // CUDAMutableData use CalStream
99
  auto *gpu_rows_num_ptr = rows_num_vector.CUDAMutableData(place);
100 101 102
  if (!use_calc_stream) {
    dev_ctx->Wait();
  }
103
  PADDLE_ENFORCE_GPU_SUCCESS(platform::dynload::ncclAllGather(
104
      gpu_rows_num_ptr + strategy.local_rank_, gpu_rows_num_ptr, 1, ncclInt64,
105
      comm->comm(), stream));
106

107
  if (!use_calc_stream) {
108
    platform::GpuStreamSync(stream);
109 110 111 112 113 114 115 116
  }

  const auto *cpu_rows_num_ptr = rows_num_vector.data();
  auto rows_num =
      std::accumulate(cpu_rows_num_ptr, cpu_rows_num_ptr + strategy.nranks_,
                      static_cast<int64_t>(0));
  dst->set_height(src.height());

117
  VLOG(3) << "Gather rows: " << string::join_strings(rows_num_vector, ',')
118 119 120 121 122 123 124 125 126 127 128 129 130 131
          << ", total rows number: " << rows_num
          << ", height: " << src.height();

  auto *dst_rows = dst->mutable_rows();
  dst_rows->resize(rows_num);
  auto *dst_rows_ptr = dst_rows->CUDAMutableData(place);
  const auto *src_rows_ptr = src_rows.CUDAData(place);

  auto *dst_tensor = dst->mutable_value();
  auto dims = src_tensor.dims();
  dims[0] = rows_num;
  auto feature_size = framework::product(dims) / dims[0];
  dst_tensor->Resize(dims);
  auto *dst_tensor_ptr = dst_tensor->mutable_data(place, dtype);
132
  const auto *src_tensor_ptr = src_tensor.data();
133 134 135

  auto sizeof_dtype = framework::SizeOfType(dtype);
  int64_t row_offset = 0;
136 137 138
  if (!use_calc_stream) {
    dev_ctx->Wait();
  }
139 140 141 142 143 144
  if (std::all_of(cpu_rows_num_ptr, cpu_rows_num_ptr + strategy.nranks_,
                  [&](int64_t row) { return row == cpu_rows_num_ptr[0]; })) {
    // During sparse communication, the number of each card is same.
    // allgather is used to speed up the allreduce by replacing broadcast.
    auto row_sendcount = cpu_rows_num_ptr[0];
    VLOG(3) << "allgather replaces broadcast to speed up in sparse allreduce";
145
    PADDLE_ENFORCE_GPU_SUCCESS(platform::dynload::ncclAllGather(
146 147 148
        src_rows_ptr, dst_rows_ptr, row_sendcount, ncclInt64, comm->comm(),
        stream));
    auto value_sendcount = cpu_rows_num_ptr[0] * feature_size;
149
    PADDLE_ENFORCE_GPU_SUCCESS(platform::dynload::ncclAllGather(
150 151 152 153
        src_tensor_ptr, dst_tensor_ptr, value_sendcount, nccl_dtype,
        comm->comm(), stream));
    return;
  }
154 155 156
  for (int i = 0; i < strategy.nranks_; ++i) {
    if (cpu_rows_num_ptr[i] > 0) {
      // 2. Broadcast the rows of SelectedRows
157
      PADDLE_ENFORCE_GPU_SUCCESS(platform::dynload::ncclBroadcast(
158
          src_rows_ptr, dst_rows_ptr + row_offset, cpu_rows_num_ptr[i],
159
          ncclInt64, i, comm->comm(), stream));
160 161 162
      // 3. Broadcast the tensor data of SelectedRows
      auto *dst_tensor_ptr_i = reinterpret_cast<uint8_t *>(dst_tensor_ptr) +
                               row_offset * feature_size * sizeof_dtype;
163
      PADDLE_ENFORCE_GPU_SUCCESS(platform::dynload::ncclBroadcast(
164
          src_tensor_ptr, dst_tensor_ptr_i, cpu_rows_num_ptr[i] * feature_size,
165
          nccl_dtype, i, comm->comm(), stream));
166 167 168 169
      row_offset += cpu_rows_num_ptr[i];
    }
  }

170
  VLOG(3) << "Original SelectedRows rows: "
171
          << string::join_strings(src_rows, ',');
172
  VLOG(3) << "Result SelectedRows rows: "
173 174 175 176 177
          << string::join_strings(*dst_rows, ',');
}
#endif

void AllReduce(const framework::Variable &src, framework::Variable *dst,
178 179 180 181 182 183 184
               const ParallelStrategy &strategy, int ring_id,
               bool use_calc_stream) {
  const auto &place = GetVarPlace(src);
  auto *dev_ctx = static_cast<platform::CUDADeviceContext *>(
      platform::DeviceContextPool::Instance().Get(place));
  platform::NCCLComm *comm =
      platform::NCCLCommContext::Instance().Get(ring_id, place);
185
  gpuStream_t stream = (use_calc_stream ? dev_ctx->stream() : comm->stream());
186

187 188 189 190 191
  if (src.IsType<framework::LoDTensor>()) {
    if (!dst->IsType<framework::LoDTensor>()) {
      dst->Clear();
    }
    AllReduce(src.Get<framework::LoDTensor>(),
192
              dst->GetMutable<framework::LoDTensor>(), stream, comm);
193 194 195 196 197 198 199
#if NCCL_VERSION_CODE >= 2212
  } else if (src.IsType<framework::SelectedRows>()) {
    if (&src != dst) {
      if (!dst->IsType<framework::SelectedRows>()) {
        dst->Clear();
      }
      AllReduce(src.Get<framework::SelectedRows>(),
200 201
                dst->GetMutable<framework::SelectedRows>(), strategy, stream,
                comm);
202 203 204 205
    } else {
      // SelectedRows cannot be allreduce in-place
      framework::Variable tmp_dst;
      AllReduce(src.Get<framework::SelectedRows>(),
206 207
                tmp_dst.GetMutable<framework::SelectedRows>(), strategy, stream,
                comm);
208 209
      // stream must synchronize to ensure accuracy of the move operation
      platform::GpuStreamSync(stream);
210 211 212 213 214 215 216 217 218 219 220 221 222
      *dst = std::move(tmp_dst);
    }
#endif
  } else {
    PADDLE_THROW(platform::errors::InvalidArgument(
        "Unsupported variable type %s for imperative allreduce, only "
        "LoDTensor and SelectedRows are supported.",
        platform::demangle(framework::ToTypeName(src.Type()))));
  }
}

void AllReduce(const framework::Variable &src, framework::Variable *dst,
               const ParallelStrategy &strategy) {
223
  AllReduce(src, dst, strategy, 0, true);
224 225 226 227 228 229
}

}  // namespace imperative
}  // namespace paddle

#endif