Update plugin to look for librccl-net.so. (#1768)

This commit is contained in:
Arm Patinyasakdikul
2025-06-26 16:59:38 -05:00
committed by GitHub
parent 5fb9d8f828
commit 71c788d4d7
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ enum ncclPluginType {
#define NUM_LIBS 3
static void *libHandles[NUM_LIBS];
static const char *pluginNames[NUM_LIBS] = { "NET", "TUNER", "PROFILER" };
static const char *pluginPrefix[NUM_LIBS] = { "libnccl-net", "libnccl-tuner", "libnccl-profiler" };
static const char *pluginPrefix[NUM_LIBS] = { "librccl-net", "librccl-tuner", "librccl-profiler" };
static const char *pluginFallback[NUM_LIBS] = { "Using internal net plugin.", "Using internal tuner plugin.", "" };
static unsigned long subsys[NUM_LIBS] = { NCCL_INIT|NCCL_NET, NCCL_INIT|NCCL_TUNING, NCCL_INIT };