fix proxyArgs for trace log

This commit is contained in:
xietingwew 2020-10-19 11:20:23 +08:00 committed by Sylvain Jeaugey
parent 0e14394c5f
commit 084207e685

View File

@ -410,7 +410,7 @@ static ncclResult_t computeColl(struct ncclInfo* info /* input */, struct ncclCo
proxyArgs->dtype = info->datatype; proxyArgs->dtype = info->datatype;
proxyArgs->redOp = info->op; proxyArgs->redOp = info->op;
TRACE(NCCL_NET,"opCount %lx slicesteps %d spl %d cpl %d nbytes %zi -> protocol %d nchannels %d nthreads %d, nloops %d nsteps %d comm %p", TRACE(NCCL_NET,"opCount %lx slicesteps %d spl %d cpl %d nbytes %zi -> protocol %d nchannels %d nthreads %d, nloops %d nsteps %d comm %p",
coll->args.opCount, proxyArgs->sliceSteps, info->nstepsPerLoop, info->nchunksPerLoop, info->nBytes, info->protocol, info->nChannels, info->nThreads, proxyArgs->opCount, proxyArgs->sliceSteps, info->nstepsPerLoop, info->nchunksPerLoop, info->nBytes, info->protocol, info->nChannels, info->nThreads,
nLoops, proxyArgs->nsteps, info->comm); nLoops, proxyArgs->nsteps, info->comm);
return ncclSuccess; return ncclSuccess;
} }