We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
taskEventBase.refCount
nccl/ext-profiler/example/event.h
Line 90 in 2ea4ee9
at proxyOp start, it is assigned to 1 rather than increment
nccl/ext-profiler/example/plugin.c
Line 341 in 2ea4ee9
Line 357 in 2ea4ee9
is it a typo?
group.refCount
Line 131 in 2ea4ee9
it is initialized to 1 at group start:
Line 206 in 2ea4ee9
Line 252 in 2ea4ee9
Line 285 in 2ea4ee9
it is only decremented in updateEvent() function (invoked at op stop -> updateEvent for task -> updateEvent for group)
updateEvent()
Line 382 in 2ea4ee9
Line 440 in 2ea4ee9
After all tasks are released, the group will have refCount==1, so it cannot get released.
The text was updated successfully, but these errors were encountered:
This is a known issue and is fixed in the next NCCL release.
Sorry, something went wrong.
No branches or pull requests
1.
taskEventBase.refCount
:nccl/ext-profiler/example/event.h
Line 90 in 2ea4ee9
at proxyOp start, it is assigned to 1 rather than increment
nccl/ext-profiler/example/plugin.c
Line 341 in 2ea4ee9
nccl/ext-profiler/example/plugin.c
Line 357 in 2ea4ee9
is it a typo?
2.
group.refCount
:nccl/ext-profiler/example/event.h
Line 131 in 2ea4ee9
it is initialized to 1 at group start:
nccl/ext-profiler/example/plugin.c
Line 206 in 2ea4ee9
and is incremented at coll and p2p task start:
nccl/ext-profiler/example/plugin.c
Line 252 in 2ea4ee9
nccl/ext-profiler/example/plugin.c
Line 285 in 2ea4ee9
it is only decremented in
updateEvent()
function (invoked at op stop -> updateEvent for task -> updateEvent for group)nccl/ext-profiler/example/plugin.c
Line 382 in 2ea4ee9
but is not decremented in group stop event:
nccl/ext-profiler/example/plugin.c
Line 440 in 2ea4ee9
After all tasks are released, the group will have refCount==1, so it cannot get released.
The text was updated successfully, but these errors were encountered: