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

[ROCm/rccl commit: 71c788d4d7]
Tento commit je obsažen v:
Arm Patinyasakdikul
2025-06-26 16:59:38 -05:00
odevzdal GitHub
rodič 2c02ee0a99
revize 32e80aedc0
2 změnil soubory, kde provedl 7 přidání a 7 odebrání
+1 -1
Zobrazit soubor
@@ -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 };