Fix incorrect pointer checking for scatter and gather (#285)
This commit is contained in:
@@ -73,10 +73,10 @@ ncclResult_t ArgsCheck(struct ncclInfo* info) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Check CUDA device pointers
|
// Check CUDA device pointers
|
||||||
if (info->coll != ncclCollBroadcast || info->comm->rank == info->root) {
|
if ((info->coll != ncclCollBroadcast && info->coll != ncclCollScatter) || info->comm->rank == info->root) {
|
||||||
NCCLCHECK(CudaPtrCheck(info->sendbuff, info->comm, "sendbuff", info->opName));
|
NCCLCHECK(CudaPtrCheck(info->sendbuff, info->comm, "sendbuff", info->opName));
|
||||||
}
|
}
|
||||||
if (info->coll != ncclCollReduce || info->comm->rank == info->root) {
|
if ((info->coll != ncclCollReduce && info->coll != ncclCollGather) || info->comm->rank == info->root) {
|
||||||
NCCLCHECK(CudaPtrCheck(info->recvbuff, info->comm, "recvbuff", info->opName));
|
NCCLCHECK(CudaPtrCheck(info->recvbuff, info->comm, "recvbuff", info->opName));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user