Disable graph mode memory registration and UBR as unsupported feature. (#1977)

This commit is contained in:
Arm Patinyasakdikul
2025-10-17 07:18:39 -07:00
committed by GitHub
parent 9806f5e9dd
commit 58eca5d7f8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ static void finishPlan(struct ncclComm* comm, struct ncclKernelPlan* plan) {
}
}
NCCL_PARAM(GraphRegister, "GRAPH_REGISTER", 1);
NCCL_PARAM(GraphRegister, "GRAPH_REGISTER", 0); // LWPCOMMLIBS-632: off by default for RCCL as unsupported feature.
static ncclResult_t getCollNetSupport(struct ncclComm* comm, struct ncclTaskColl* task, int* collNetSupport);
rccl_static ncclResult_t getAlgoInfo(
+1 -1
View File
@@ -18,7 +18,7 @@
using namespace rccl;
NCCL_PARAM(LocalRegister, "LOCAL_REGISTER", 1);
NCCL_PARAM(LocalRegister, "LOCAL_REGISTER", 0); // LWPCOMMLIBS-632: off by default for RCCL as unsupported feature.
static ncclResult_t regFindHandleFromSymAddr(struct ncclComm* comm, void* baseSymPtr, struct ncclReg** handle) {
struct ncclRegCache* cache = &comm->regCache;