Removing "Could not find any local path from gpu X to net." warning (#1866)

* Removing "Could not find any local path from gpu X to net." warning to avoid confusion.
This commit is contained in:
Arm Patinyasakdikul
2025-08-20 16:52:35 -05:00
committed by GitHub
parent 9d3acffa5f
commit 28a83c3ea6
+2
View File
@@ -1546,7 +1546,9 @@ ncclResult_t ncclTopoGetLocalNet(struct ncclTopoSystem* system, int rank, int ch
int localNetCount;
NCCLCHECK(ncclTopoGetLocal(system, GPU, gpu, NET, localNets, &localNetCount, NULL));
if (localNetCount==0) {
#if !defined(__HIP_PLATFORM_AMD__) && !defined(__HIPCC__)
WARN("Could not find any local path from gpu %d to net.", gpu);
#endif
return ncclInternalError;
}