HcclCommInitRootInfoConfig
Applicability
Product |
Supported |
|---|---|
Atlas 350 Accelerator Card |
√ |
√ |
|
√ |
|
☓ |
|
√ |
|
√ |
For
For the
Function
Initializes the HCCL based on rootInfo and creates an HCCL communicator with specific configurations.
This API can be called concurrently by multiple threads within the same process. However, it only allows single-device single-thread scenarios. Concurrent calls on a single device across multiple threads are not supported.
As shown in the following figure, step 0 and step 1 cannot be called concurrently. Step 1 must be executed serially after step 0.

Prototype
1 | HcclResult HcclCommInitRootInfoConfig(uint32_t nRanks, const HcclRootInfo *rootInfo, uint32_t rank, const HcclCommConfig *config, HcclComm *comm) |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
nRanks |
Input |
Number of ranks in a cluster. |
rootInfo |
Input |
Root rank information, including the IP address and ID of the root rank, which is generated by HcclGetRootInfo. |
rank |
Input |
ID of the current rank. |
config |
Input |
Communicator configuration items, including the buffer size, deterministic computing switch, communicator name, and communication operator expansion mode. Configuration parameters must fall within the valid value range. For details on the parameters and their priorities in HcclCommConfig, see HcclCommConfig. Note that the input config must be first initialized by calling HcclCommConfigInit. |
comm |
Output |
Pointer to the initialized communicator. For details about the definition of the HcclComm type, see HcclComm. |
Returns
HcclResult: HCCL_SUCCESS on success, or else failure.
Constraints
All ranks in the same communicator must have the same nRanks, rootInfo, and config.
Call Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | uint32_t rankSize = 8; uint32_t deviceId = 0; // Generate the identification information of the root rank. HcclRootInfo rootInfo; HcclGetRootInfo(&rootInfo); // Create and initialize the configuration items of the communicator. HcclCommConfig config; HcclCommConfigInit(&config); // Modify the communicator configuration as required. config.hcclBufferSize = 1024; // Size of the buffer for storing the shared data, in MB. The value must be greater than or equal to 1. The default value is 200. config.hcclDeterministic = 1; // Controls whether to enable deterministic computing for reduction communication operators. The default value is 0, indicating that deterministic computing is disabled. std::strcpy(config.hcclCommName, "comm_1"); // Initialize the collective communicator. HcclComm hcclComm; HCCLCHECK(HcclCommInitRootInfoConfig(rankSize, &rootInfo, deviceId, &config, &hcclComm)); // Destroy the communicator. HcclCommDestroy(hcclComm); |