Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/xccl/ProcessGroupXCCL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -364,14 +364,14 @@ ProcessGroupXCCL::ProcessGroupXCCL(
c10::intrusive_ptr<Options> options)
: Backend(rank, size),
store_(store),
options_(std::move(options)),
xcclCommCounter_(0),
local_id_(process_group_id++) {
local_id_(process_group_id++),
options_(std::move(options)) {
this->setGroupUid(options_->group_name);
logPrefix_ = createLogPrefix();
blockingWait_ = getCvarBool(TORCH_XCCL_BLOCKING_WAIT, false);
traceBufferSize_ = getCvarInt({"TORCH_FR_BUFFER_SIZE"}, 2000);

this->setGroupUid(options_->group_name);
// In PGNCCL, the pg ranks are recorded on comm setup in each op, but we just
// do it here.
const auto XcclVersion = getXcclVersion();
Expand Down
Loading