230 lines
8.5 KiB
C++
230 lines
8.5 KiB
C++
// 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.
|
|
|
|
#include "paddle/fluid/imperative/nccl_context.h"
|
|
|
|
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL)
|
|
#include "paddle/fluid/imperative/all_reduce.h"
|
|
#include "paddle/phi/core/platform/collective_helper.h"
|
|
#include "paddle/phi/core/platform/gen_comm_id_helper.h"
|
|
#endif
|
|
|
|
#ifdef PADDLE_WITH_NCCL
|
|
#include <nccl.h>
|
|
|
|
#include "paddle/phi/backends/dynload/nccl.h"
|
|
#endif
|
|
|
|
#include "paddle/fluid/framework/convert_utils.h"
|
|
#include "paddle/fluid/framework/scope.h"
|
|
#include "paddle/fluid/framework/variable.h"
|
|
#include "paddle/fluid/platform/device/gpu/nccl_helper.h"
|
|
#include "paddle/phi/common/place.h"
|
|
#include "paddle/phi/core/platform/device_context.h"
|
|
|
|
namespace paddle::framework {
|
|
class Variable;
|
|
} // namespace paddle::framework
|
|
|
|
namespace paddle::imperative {
|
|
#if defined(PADDLE_WITH_NCCL) || defined(PADDLE_WITH_RCCL)
|
|
|
|
void NCCLParallelContext::BcastNCCLId(
|
|
std::vector<ncclUniqueId> &nccl_ids, // NOLINT
|
|
int root,
|
|
int server_fd) {
|
|
if (strategy_.local_rank_ == root) {
|
|
std::vector<std::string> other_trainers;
|
|
for (auto &ep : strategy_.trainer_endpoints_) {
|
|
if (ep != strategy_.current_endpoint_) {
|
|
other_trainers.push_back(ep);
|
|
}
|
|
}
|
|
platform::SendBroadCastCommID(other_trainers, &nccl_ids);
|
|
} else {
|
|
platform::RecvBroadCastCommID(
|
|
server_fd, strategy_.current_endpoint_, &nccl_ids);
|
|
}
|
|
}
|
|
|
|
void NCCLParallelContext::Init() {
|
|
int server_fd = -1;
|
|
|
|
std::vector<ncclUniqueId> nccl_ids;
|
|
nccl_ids.resize(strategy_.nrings_);
|
|
|
|
if (strategy_.local_rank_ == 0) { // NOLINT
|
|
// generate the unique ncclid on the root worker
|
|
for (auto &nccl_id : nccl_ids) {
|
|
phi::dynload::ncclGetUniqueId(&nccl_id);
|
|
}
|
|
} else {
|
|
// FIXME(wangxi): gloo will use rank0 endpoint, so not create socket server
|
|
// on rank0.
|
|
server_fd = platform::SocketServer::GetInstance(strategy_.current_endpoint_)
|
|
.socket();
|
|
}
|
|
BcastNCCLId(nccl_ids, 0, server_fd);
|
|
|
|
int gpu_id = place_.device; // NOLINT
|
|
for (int ring_id = 0; ring_id < strategy_.nrings_; ring_id++) {
|
|
VLOG(0) << "init nccl context nranks: " << strategy_.nranks_
|
|
<< " local rank: " << strategy_.local_rank_ << " gpu id: " << gpu_id
|
|
<< " ring id: " << ring_id;
|
|
// it will assign nccl_comm in phi::GPUContext within ring_id
|
|
platform::NCCLCommContext::Instance().CreateComm(&nccl_ids[ring_id],
|
|
strategy_.nranks_,
|
|
strategy_.local_rank_,
|
|
gpu_id,
|
|
ring_id);
|
|
|
|
compute_events_.emplace_back(
|
|
platform::CudaEventResourcePool::Instance().New(place_.device));
|
|
comm_events_.emplace_back(
|
|
platform::CudaEventResourcePool::Instance().New(place_.device));
|
|
}
|
|
}
|
|
|
|
void NCCLParallelContext::InitWithRingID(int ring_id) {
|
|
int server_fd = -1;
|
|
std::vector<ncclUniqueId> nccl_ids;
|
|
nccl_ids.resize(1);
|
|
|
|
if (strategy_.local_rank_ == 0) {
|
|
// generate the unique ncclid on the root worker
|
|
phi::dynload::ncclGetUniqueId(&nccl_ids[0]);
|
|
} else {
|
|
// FIXME(wangxi): gloo will use rank0 endpoint, so not create socket server
|
|
// on rank0.
|
|
server_fd = platform::SocketServer::GetInstance(strategy_.current_endpoint_)
|
|
.socket();
|
|
}
|
|
BcastNCCLId(nccl_ids, 0, server_fd);
|
|
|
|
int gpu_id = place_.device; // NOLINT
|
|
VLOG(0) << "init nccl context nranks: " << strategy_.nranks_
|
|
<< " local rank: " << strategy_.local_rank_ << " gpu id: " << gpu_id
|
|
<< " ring id: " << ring_id;
|
|
// it will assign nccl_comm in phi::GPUContext within ring_id
|
|
platform::NCCLCommContext::Instance().CreateComm(
|
|
&nccl_ids[0], strategy_.nranks_, strategy_.local_rank_, gpu_id, ring_id);
|
|
|
|
compute_events_.emplace_back(
|
|
platform::CudaEventResourcePool::Instance().New(place_.device));
|
|
comm_events_.emplace_back(
|
|
platform::CudaEventResourcePool::Instance().New(place_.device));
|
|
}
|
|
|
|
void NCCLParallelContext::AllReduceByStream(const framework::Variable &src,
|
|
framework::Variable *dst,
|
|
int ring_id,
|
|
bool use_calc_stream) {
|
|
PADDLE_ENFORCE_EQ(
|
|
phi::is_gpu_place(place_),
|
|
true,
|
|
common::errors::Unimplemented(
|
|
"Dynamic graph mode does not support multi-CPU training yet."));
|
|
AllReduce(src, dst, strategy_, ring_id, use_calc_stream);
|
|
}
|
|
|
|
void NCCLParallelContext::Broadcast(framework::Variable *src, int ring_id) {
|
|
VLOG(3) << "/// DEBUG /// start inter broadcast with ring_id: " << ring_id;
|
|
DenseTensor *src_tensor = src->GetMutable<DenseTensor>();
|
|
const auto &place = src_tensor->place();
|
|
platform::NCCLComm *comm =
|
|
platform::NCCLCommContext::Instance().Get(ring_id, place);
|
|
gpuStream_t stream = comm->stream();
|
|
|
|
void *src_ptr = src_tensor->data();
|
|
auto nccl_dtype = phi::ToNCCLDataType(src_tensor->dtype());
|
|
PADDLE_ENFORCE_GPU_SUCCESS(phi::dynload::ncclBcast(
|
|
src_ptr, src_tensor->numel(), nccl_dtype, 0, comm->comm(), stream));
|
|
}
|
|
|
|
phi::DeviceContext *NCCLParallelContext::GetDeviceContext(int ring_id) {
|
|
return static_cast<phi::DeviceContext *>(platform::NCCLCommContext::Instance()
|
|
.Get(ring_id, place_)
|
|
->dev_context());
|
|
}
|
|
|
|
void NCCLParallelContext::WaitCompute(int ring_id) {
|
|
PADDLE_ENFORCE_GE(
|
|
ring_id,
|
|
0,
|
|
common::errors::OutOfRange("ring id must >= 0, but got %d", ring_id));
|
|
PADDLE_ENFORCE_LT(ring_id,
|
|
compute_events_.size(),
|
|
common::errors::OutOfRange(
|
|
"ring id must < compute events size,"
|
|
"but got ring id = %d, compute events size = %d",
|
|
ring_id,
|
|
compute_events_.size()));
|
|
|
|
auto compute_stream = static_cast<phi::GPUContext *>(
|
|
phi::DeviceContextPool::Instance().Get(place_))
|
|
->stream();
|
|
auto comm_stream =
|
|
platform::NCCLCommContext::Instance().Get(ring_id, place_)->stream();
|
|
auto event = compute_events_[ring_id].get();
|
|
|
|
// compute_stream-->event-->comm_stream
|
|
#ifdef PADDLE_WITH_HIP
|
|
PADDLE_ENFORCE_GPU_SUCCESS(hipEventRecord(event, compute_stream));
|
|
PADDLE_ENFORCE_GPU_SUCCESS(hipStreamWaitEvent(comm_stream, event, 0));
|
|
#else
|
|
PADDLE_ENFORCE_GPU_SUCCESS(cudaEventRecord(event, compute_stream));
|
|
PADDLE_ENFORCE_GPU_SUCCESS(cudaStreamWaitEvent(comm_stream, event, 0));
|
|
#endif
|
|
}
|
|
|
|
void NCCLParallelContext::WaitComm(int ring_id) {
|
|
PADDLE_ENFORCE_GE(
|
|
ring_id,
|
|
0,
|
|
common::errors::OutOfRange("ring id must >= 0, but got %d", ring_id));
|
|
PADDLE_ENFORCE_LT(
|
|
ring_id,
|
|
comm_events_.size(),
|
|
common::errors::OutOfRange("ring id must < comm events size,"
|
|
"but got ring id = %d, comm events size = %d",
|
|
ring_id,
|
|
comm_events_.size()));
|
|
|
|
auto compute_stream = static_cast<phi::GPUContext *>(
|
|
phi::DeviceContextPool::Instance().Get(place_))
|
|
->stream();
|
|
auto comm_stream =
|
|
platform::NCCLCommContext::Instance().Get(ring_id, place_)->stream();
|
|
auto event = comm_events_[ring_id].get();
|
|
|
|
// comm_stream-->event-->compute_stream
|
|
#ifdef PADDLE_WITH_HIP
|
|
PADDLE_ENFORCE_GPU_SUCCESS(hipEventRecord(event, comm_stream));
|
|
PADDLE_ENFORCE_GPU_SUCCESS(hipStreamWaitEvent(compute_stream, event, 0));
|
|
#else
|
|
PADDLE_ENFORCE_GPU_SUCCESS(cudaEventRecord(event, comm_stream));
|
|
PADDLE_ENFORCE_GPU_SUCCESS(cudaStreamWaitEvent(compute_stream, event, 0));
|
|
#endif
|
|
}
|
|
|
|
void NCCLParallelContext::SynchronizeCompute() {
|
|
auto *compute_dev_ctx = static_cast<phi::GPUContext *>(
|
|
phi::DeviceContextPool::Instance().Get(place_));
|
|
compute_dev_ctx->Wait();
|
|
}
|
|
|
|
#endif
|
|
|
|
} // namespace paddle::imperative
|