fixing the error message for mpirun when number of requested GPUs exceeds the limits (#33)

[ROCm/rccl-tests commit: e146460810]
Этот коммит содержится в:
Pedram Alizadeh
2023-04-03 11:37:13 -04:00
коммит произвёл GitHub
родитель cd256748c0
Коммит 39f83d5bb7
+9
Просмотреть файл
@@ -1127,11 +1127,13 @@ int main(int argc, char* argv[]) {
}
HIPCHECK(hipGetDeviceCount(&numDevices));
#ifndef MPI_SUPPORT
if (nGpus > numDevices)
{
fprintf(stderr, "[ERROR] The number of requested GPUs (%d) is greater than the number of GPUs available (%d)\n", nGpus, numDevices);
return testNcclError;
}
#endif
if (minBytes > maxBytes) {
fprintf(stderr, "invalid sizes for 'minbytes' and 'maxbytes': %llu > %llu\n",
(unsigned long long)minBytes,
@@ -1154,7 +1156,14 @@ int main(int argc, char* argv[]) {
return -1;
}
#ifdef MPI_SUPPORT
int nProcs = 1;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &nProcs);
if (nGpus * nProcs > numDevices)
{
fprintf(stderr, "[ERROR] The number of requested GPUs (%d) is greater than the number of GPUs available (%d)\n", nGpus*nProcs, numDevices);
return testNcclError;
}
#endif
TESTCHECK(run());
return 0;