Changing the failure print to reflect a bad installation of MSCCL (#1160)

Co-authored-by: Marzieh Berenjkoub <mberenjk@amd.com>
This commit is contained in:
mberenjk
2024-05-08 16:56:26 -05:00
committed by GitHub
parent a64aab5f63
commit 87d01e6bf5
+1 -1
View File
@@ -129,7 +129,7 @@ static ncclResult_t mscclInternalSchedulerInit(ncclComm_t comm, int* numChannels
//Try to find the algorithm directory under share folder based on librccl.so path
dp = opendir(mscclAlgoShareDir);
if (dp == nullptr) {
WARN("MSCCL Internal Scheduler: open algorithm in share directory %s failed", mscclAlgoShareDir);
WARN("MSCCL Internal Scheduler: Unable to find algorithm files in %s. Please ensure that RCCL has been installed properly" , mscclAlgoShareDir);
return ncclInvalidUsage;
}
fullDirPath = mscclAlgoShareDir;