lessened the amount of child processes to active ones (#720)

This commit is contained in:
akolliasAMD
2023-04-11 08:59:56 -06:00
committed by GitHub
parent 27e0cb43c2
commit 2ce7d971e5
+3 -3
View File
@@ -92,8 +92,8 @@ namespace RcclUnitTesting
}
// Create child-processes
childList.resize(this->numDevicesAvailable);
for (int childId = 0; childId < this->numDevicesAvailable; ++childId)
childList.resize(this->numActiveChildren);
for (int childId = 0; childId < this->numActiveChildren; ++childId)
{
childList[childId] = new TestBedChild(childId, ev.verbose, ev.printValues);
if (childList[childId]->InitPipes() != TEST_SUCCESS)
@@ -396,7 +396,7 @@ namespace RcclUnitTesting
// Send Stop to all child processes
int const cmd = TestBedChild::CHILD_STOP;
for (int childId = 0; childId < this->numDevicesAvailable; ++childId)
for (int childId = 0; childId < this->numActiveChildren; ++childId)
{
PIPE_WRITE(childId, cmd);