RCCL environment variables#
This section describes the most important RCCL environment variables, which are grouped by functionality.
Configuration and setup#
The configuration and setup environment variables for RCCL are collected in the following table.
Environment variable |
Values |
|---|---|
NCCL_CONF_FILESpecifies the path to the RCCL configuration file.
|
String path to configuration file
Default:
~/.rccl.conf or /etc/rccl.conf |
NCCL_HOSTIDSets the host identifier for multi-node communication.
|
String value for host identification
Used for host hash generation
|
NCCL_BOOTSTRAP_BIDIR_ALLGATHEREnables the bidirectional ring AllGather (N/2 steps) on the socket OOB path
during bootstrap. The unidirectional ring (N-1 steps) is kept as a fallback.
Has no effect when net OOB is in use.
|
0: Force unidirectional ring.1: Force bidirectional ring (default). |
NCCL_CUMEM_ENABLEEnables cuMem virtual memory management (VMM) for RCCL allocations,
which is required for
ncclCommSuspend and ncclCommResume to
release the physical GPU memory of a suspended communicator. See
Suspending and resuming a communicator for the full prerequisites. |
0: Disabled (default).1: Enabled.-2: Auto-detect; enable when the platform supports VMM. |
NCCL_MIN_CTASMinimum number of CTAs (channels) used for a collective. Overrides
the
minCTAs field of ncclConfig_t. |
Positive integer (values
<= 0 are ignored).Default: unset (uses the RCCL default).
|
NCCL_MAX_CTASMaximum number of CTAs (channels) used for a collective. Overrides
the
maxCTAs field of ncclConfig_t. |
Positive integer (values
<= 0 are ignored).Default: unset (uses the RCCL default).
|
Logging and debugging#
The logging and debugging environment variables for RCCL are collected in the following table.
Environment variable |
Values |
|---|---|
NCCL_DEBUGControls debug logging in RCCL for troubleshooting and monitoring collective communication operations.
|
These are the logging levels in RCCL set via
NCCL_DEBUG. Each logging level contains all logging for levels below it. The default logging level is ERROR.NONE: No logging is printed.ERROR: These messages report when a fatal condition has occurred in RCCL and the operation can’t continue.VERSION: librccl version info is printed during the initialization phase.WARN: Prints warnings about unusual conditions that could lead to unexpected results.INFO: Prints standard logging messages about status and operations performed.ABORT: Unused.TRACE: Prints trace-level logging of function calls and parameters. Only active when librccl is built using ENABLE_TRACE. |
NCCL_DEBUG_SUBSYSControls which subsystems generate debug output.
|
These are the logging subsystems set via
NCCL_DEBUG_SUBSYS. These can be set as a comma-separated list, and can be inverted using the ^ prefix. The default subsystem set is INIT, BOOTSTRAP, and ENV.INIT: Prints during the initialization phase.COLL: Prints during execution of collectives.P2P: Prints logs related to peer-to-peer setup or communication.SHM: Prints logs related to shared memory.NET: Prints logs related to network setup or communication.GRAPH: Prints logs related to parsing the topology of the network.TUNING: Prints logs related to the tuner plugin.ENV: Prints logs related to environment variables.ALLOC: Prints logs related to memory allocation.CALL: Prints logs for function calls (TRACE only).PROXY: Prints logs related to the proxy thread.NVLS: Not valid for AMD/RCCL.BOOTSTRAP: Prints logs related to the bootstrapping phase of initialization.REG: Prints logs related to registration and deregistration of transport initialization.PROFILE: Prints logs related to the profiling/timing info.RAS: Prints logs related to RAS.VERBS: Prints logs related to IB/Verbs.ALL: Activates all logging subsystems. |
NCCL_WARN_ENABLE_DEBUG_INFOConverts all
WARN level logs to INFO level logs. |
0: Default value. Variable is not enabled.1: Enable the variable. |
NCCL_DEBUG_TIMESTAMP_LEVELSThe timestamp levels for
NCCL_DEBUG. |
A set of
NCCL_DEBUG levels can have a timestamp prepended set as a comma-separated list which can be inverted using the ^ prefix. The default set is WARN. |
NCCL_DEBUG_TIMESTAMP_FORMATThe timestamp format for
NCCL_DEBUG. |
Set the format of the timestamp in
printf style. The default format is "[%F %T] ". |
NCCL_DEBUG_FILEWrite logs to a file rather than
stdout. |
The filename can be formatted using
%h for hostname, %p for pid, and %% to escape the % character. It is recommended to use %p to output to individual files per pid to avoid mixing or potentially overwriting the output. Example usage: NCCL_DEBUG_FILE=debugfile.%h.%p |
Algorithm and protocol control#
The algorithm and protocol control environment variables for RCCL are collected in the following table.
Environment variable |
Values |
|---|---|
NCCL_ALGOForces specific algorithm selection for collectives.
|
Algorithm name string
Used to override automatic algorithm selection
|
NCCL_PROTOForces specific protocol selection for communication.
|
Protocol name string
Used to override automatic protocol selection
|
Network and topology#
The network and topology environment variables for RCCL are collected in the following table.
Environment variable |
Values |
|---|---|
NCCL_IB_HCASpecifies InfiniBand device:port to use.
|
Device specification string
Prefix with
^ for exclusion, = for exact match |
NCCL_IB_GID_INDEXDefines the Global ID index used in RoCE mode.
|
Integer value (default:
-1)See InfiniBand
show_gids command for valid values |
NCCL_PXN_C2CAllows PXN routing through a C2C link to reach a NIC attached to a
peer GPU. The C2C path is NVIDIA-specific and is not currently
applicable on AMD hardware.
|
0: Disabled (default).1: Enabled. |
NCCL_SOCKET_IFNAMESpecifies which IP interfaces to use for communication.
|
Interface prefix string or list
Multiple prefixes separated by
,Prefix with
^ for exclusion, = for exact matchExample:
eth (all eth interfaces), =eth0 (exact match) |
NCCL_SOCKET_FAMILYForces IPv4/IPv6 interface selection.
|
AF_INET: Force IPv4AF_INET6: Force IPv6Unset: Use first available
|
NCCL_NET_MERGE_LEVELControls network device merging behavior.
|
Integer value specifying merge level
Default:
PATH_PORT |
NCCL_NET_FORCE_MERGEForces merging of network devices.
|
String specifying forced merge configuration
|
NCCL_NETDEVS_POLICYControls how many of a GPU’s locally reachable NICs are used on the
network path for
send, recv, and all-to-all. The policygoverns per-channel NIC selection (
ncclTopoGetLocalNet); theper-peer network channel count is still bounded by available NIC
bandwidth.
Any unset, malformed, or out-of-range value falls back to
AUTO. |
AUTO (default): use ceil(localNetCount / localGpuCount) NICs,dividing the local NICs across the GPUs that share them.
ALL: use every locally reachable NIC.MAX:N: use at most N NICs (clamped to the number reachable);N must be a positive integer. |
RCCL_IB_SPLIT_DATA_THRESHOLDMinimum message size (in bytes) before the payload is split across
multiple NICs/QPs.
Smaller messages use one QP for data to reduce latency.
This variable can be leveraged when NIC Fusion (
NCCL_NET_MERGE_LEVEL) and/or data splitting on QPs (NCCL_IB_SPLIT_DATA_ON_QPS) is enabled. |
Integer value in bytes (default:
128)N: Split only when message size >= N bytes |
NCCL_RINGSDefines custom ring topology.
|
Ring topology specification string
Overrides automatic topology detection
|
RCCL_TREESDefines custom tree topology.
|
Tree topology specification string
Alternative to ring topology
|
NCCL_RINGS_REMAPControls ring remapping for specific topologies.
|
Remapping specification string
Used with Rome 4P2H topology
|
Development and testing (advanced)#
The development and testing environment variables for RCCL are collected in the following table. These variables are primarily intended for debugging and development purposes.
Environment variable |
Values |
|---|---|
CUDA_LAUNCH_BLOCKINGControls CUDA kernel launch blocking behavior.
|
0: Non-blocking launches1 or non-zero: Blocking launches |
NCCL_COMM_IDEnables multi-process mode in test applications.
|
Any non-empty value enables multi-process mode
Used with test executables for distributed testing
|
NCCL_DISABLE_MEM_MANAGERDisables the internal RCCL memory manager. This is an internal
parameter intended for testing and debugging only. When the memory
manager is disabled,
ncclCommSuspend, ncclCommResume, and
ncclCommMemStats return ncclInvalidUsage. |
0: Memory manager enabled (default).1: Memory manager disabled. |
NCCL_NO_CACHEDisables caching for selected RCCL environment parameters so their
values are re-read from the environment on each access. By default,
RCCL caches parameter values after the first read for performance.
This variable is intended for testing and debugging when parameters
need to be changed without restarting the process. The value is
parsed once on first use, so it must be set before RCCL reads any
parameters.
NCCL_NO_CACHE itself is always cached and cannot
be listed. |
Unset (default): all parameters are cached after first read.
Comma-separated list of parameter names (for example,
NCCL_DEBUG,NCCL_ALGO): disable caching for those keys only.ALL: disable caching for every parameter except
NCCL_NO_CACHE. |
Multi-communicator ordering#
When an application uses multiple RCCL communicators on the same device, collective operations may execute in an unpredictable order unless the application adds explicit synchronization between streams.
Environment variable |
Values |
|---|---|
NCCL_LAUNCH_ORDER_IMPLICITSerializes RCCL operations across different communicators on the
same device according to their host-side launch sequence. This
provides deterministic execution order for multi-communicator
workloads such as chained collectives where one operation’s
output feeds into the next.
|
0: Disabled (default).1: Enabled. Operations execute in host launch order. |