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

Этот коммит содержится в:
Arm Patinyasakdikul
2025-06-26 16:59:38 -05:00
коммит произвёл GitHub
родитель 5fb9d8f828
Коммит 71c788d4d7
2 изменённых файлов: 7 добавлений и 7 удалений
+1 -1
Просмотреть файл
@@ -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 };