From 33200294c541f7bce4c36c85fddb0a7322fe4c97 Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Tue, 26 Mar 2024 22:04:10 +0000 Subject: [PATCH] Reduce iterations for BootstrapTest.ResumeWithId --- test/mp_unit/bootstrap_tests.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mp_unit/bootstrap_tests.cc b/test/mp_unit/bootstrap_tests.cc index 82120a1f7..ebb45bdc3 100644 --- a/test/mp_unit/bootstrap_tests.cc +++ b/test/mp_unit/bootstrap_tests.cc @@ -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(gEnv->rank, gEnv->worldSize); mscclpp::UniqueId id; if (bootstrap->getRank() == 0) id = bootstrap->createUniqueId();