Skip to content

Commit

Permalink
Reduce iterations for BootstrapTest.ResumeWithId
Browse files Browse the repository at this point in the history
  • Loading branch information
chhwang committed Mar 26, 2024
1 parent e4fffc2 commit 3320029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mp_unit/bootstrap_tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ TEST_F(BootstrapTest, ResumeWithId) {
// This test may take a few minutes.
bootstrapTestTimer.set(300);

for (int i = 0; i < 3000; ++i) {
for (int i = 0; i < 100; ++i) {
auto bootstrap = std::make_shared<mscclpp::TcpBootstrap>(gEnv->rank, gEnv->worldSize);
mscclpp::UniqueId id;
if (bootstrap->getRank() == 0) id = bootstrap->createUniqueId();
Expand Down

0 comments on commit 3320029

Please sign in to comment.