set MAXCHANNELS to 128

This commit is contained in:
Nusrat Islam
2024-05-23 15:27:43 -05:00
parent 9f654f6cf5
commit ef442f8f92
7 changed files with 33 additions and 12 deletions
+1 -1
View File
@@ -225,7 +225,7 @@ static void groupCleanup(struct ncclComm** groupCommHeadPtr, struct ncclComm** g
for (int i = 0; i < comm->nRanks; i++) {
comm->tasks.peers[i].sendSeen = false;
comm->tasks.peers[i].recvSeen = false;
for (int j = 0; j < 4; j++) {
for (int j = 0; j < MAXCHANNELS/64; j++) {
comm->connectSend[i].masks[j] = 0UL;
comm->connectRecv[i].masks[j] = 0UL;
}