Skip to content

Commit

Permalink
Fixing broken debug line in ReferencePartitioning.
Browse files Browse the repository at this point in the history
  • Loading branch information
benvanik authored Jan 23, 2025
1 parent 3af03b1 commit d6b2b0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,10 @@ partitionStreamableOpsReference(IREE::Stream::PartitioningConfigAttr config,
opInfo.membership.resize(opInfo.membership.size() + 1, /*t=*/true);
auto builder = std::make_unique<PartitionBuilder>();
builder->ordinal = builders.size();
builders.push_back(std::move(builder));
usableBuilders.resize(builders.size(), /*t=*/true);
LLVM_DEBUG(llvm::dbgs()
<< "Created partition " << builder->ordinal << "\n");
builders.push_back(std::move(builder));
usableBuilders.resize(builders.size(), /*t=*/true);
firstCandidateOrdinal = builders.size() - 1;
}

Expand Down

0 comments on commit d6b2b0d

Please sign in to comment.