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

[ROCm/rccl commit: 2ce7d971e5]
Bu işleme şunda yer alıyor:
akolliasAMD
2023-04-11 08:59:56 -06:00
işlemeyi yapan: GitHub
ebeveyn ff2c1c5d0f
işleme af8c2194a7
+3 -3
Dosyayı Görüntüle
@@ -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);