58 sor
2.0 KiB
C++
58 sor
2.0 KiB
C++
/*************************************************************************
|
|
* Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved.
|
|
* Modifications Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved.
|
|
*
|
|
* See LICENSE.txt for license information
|
|
************************************************************************/
|
|
|
|
#include "channel.h"
|
|
#include "param.h"
|
|
|
|
NCCL_PARAM(Buffsize, "BUFFSIZE", DEFAULT_BUFFER_SIZE_BYTES);
|
|
|
|
ncclResult_t initChannel(struct ncclComm* comm, int channelid) {
|
|
struct ncclChannel* channel = comm->channels+channelid;
|
|
channel->id = channelid;
|
|
|
|
// Setup intermediate buffering
|
|
channel->buffSize = ncclParamBuffsize();
|
|
|
|
// Ring index to user rank table.
|
|
NCCLCHECK(ncclCudaCalloc(&channel->ring.devUserRanks, comm->nRanks));
|
|
NCCLCHECK(ncclCalloc(&channel->ring.userRanks, comm->nRanks));
|
|
|
|
// Communication structures with peers.
|
|
NCCLCHECK(ncclCudaCalloc(&channel->devPeers, comm->nRanks));
|
|
NCCLCHECK(ncclCalloc(&channel->peers, comm->nRanks));
|
|
for (size_t i=0; i<comm->nRanks; ++i) {
|
|
channel->peers[i].send.comm = comm;
|
|
channel->peers[i].recv.comm = comm;
|
|
}
|
|
|
|
// Per-channel operation list.
|
|
NCCLCHECK(ncclCudaHostAlloc((void**)&channel->collectives, (void**)&channel->devCollectives, sizeof(struct ncclColl)*NCCL_MAX_OPS));
|
|
return ncclSuccess;
|
|
}
|
|
|
|
ncclResult_t freeChannel(struct ncclChannel* channel, int nRanks) {
|
|
// Operation list
|
|
NCCLCHECK(ncclCudaHostFree(channel->collectives));
|
|
|
|
// Free Ring index to rank tables
|
|
free(channel->ring.userRanks);
|
|
CUDACHECK(hipFree(channel->ring.devUserRanks));
|
|
|
|
// Free transport proxy resources
|
|
for (int r=0; r<nRanks; r++) {
|
|
struct ncclPeer* peer = channel->peers+r;
|
|
if (peer->send.transportResources) NCCLCHECK(peer->send.transportComm->free(peer->send.transportResources));
|
|
if (peer->recv.transportResources) NCCLCHECK(peer->recv.transportComm->free(peer->recv.transportResources));
|
|
}
|
|
|
|
// Free the peer structures.
|
|
CUDACHECK(hipFree(channel->devPeers));
|
|
free(channel->peers);
|
|
|
|
return ncclSuccess;
|
|
}
|