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

Co-authored-by: Marzieh Berenjkoub <mberenjk@amd.com>

[ROCm/rccl commit: 87d01e6bf5]
This commit is contained in:
mberenjk
2024-05-08 16:56:26 -05:00
committed by GitHub
parent dd5d66d01a
commit 42d9f2458a
@@ -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;