Increase P2P channels per peer (#1060)

[ROCm/rccl commit: ffde530af5]
Tento commit je obsažen v:
Wenkai Du
2024-01-25 11:21:58 -08:00
odevzdal GitHub
rodič b229abc692
revize 71a356670f
+1
Zobrazit soubor
@@ -861,6 +861,7 @@ ncclResult_t ncclTopoComputeP2pChannels(struct ncclComm* comm) {
} else {
// Round to next pow2 nChannelsPerPeer and nChannels
comm->p2pnChannelsPerPeer = (ncclParamNChannelsPerPeer() == -2 ? nextPow2(minChannels) : ncclParamNChannelsPerPeer());
comm->p2pnChannelsPerPeer *= 2;
comm->p2pnChannels = nextPow2(comm->p2pnChannels);
}