HcclGetCommName

Applicability

Product

Supported

Atlas 350 Accelerator Card

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas 200I/500 A2 inference product

Atlas inference product

Atlas training product

For Atlas A2 training product/Atlas A2 inference product, only the Atlas 800T A2 training server, Atlas 900 A2 PoD cluster basic unit, and Atlas 200T A2 Box16 heterogeneous subrack are supported.

For the Atlas inference products, only the Atlas 300I Duo inference card is supported.

Function

Obtains the name of the communicator where the specified communication operation is performed.

Prototype

1
HcclResult HcclGetCommName(HcclComm comm, char* commName)

Parameters

Parameter

Input/Output

Description

comm

Input

Communicator where the operation is performed.

For details about the definition of the HcclComm type, see HcclComm.

commName

Output

Name of the obtained communicator.

The value is of the char* type and can contain a maximum of 128 bytes.

Returns

HcclResult: HcclSuccess on success, or else failure.

Constraints

None

Call Example

1
2
3
4
5
// Initialize the communicator.
HcclComm comm;
// Query the communicator name.
char commName[128];
HcclGetCommName(comm, &commName);