Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/nccl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxietingwew <xietingwen@meituan.com>2020-10-19 06:20:23 +0300
committerSylvain Jeaugey <sjeaugey@nvidia.com>2020-10-21 19:18:40 +0300
commit084207e685c4587e7d0aa2f1f7f148d3e0e68da6 (patch)
treec42a358fd78e1434ee16bcad1d82b729ef00ccc1
parent0e14394c5ffcdae5517ef5b3a8c734e2ccb215b0 (diff)
fix proxyArgs for trace log
-rw-r--r--src/enqueue.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/enqueue.cc b/src/enqueue.cc
index a8c0e41..40e8f57 100644
--- a/src/enqueue.cc
+++ b/src/enqueue.cc
@@ -410,7 +410,7 @@ static ncclResult_t computeColl(struct ncclInfo* info /* input */, struct ncclCo
proxyArgs->dtype = info->datatype;
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",
- 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);
return ncclSuccess;
}