HcclSendRecvType

Description

Indicates point-to-point communication operations in batches, used to identify whether the current task type is sending or receiving.

Prototype

1
2
3
4
5
typedef enum {
    HCCL_SEND = 0,    /* The current task is a sending task. */
    HCCL_RECV = 1,    /* The current task is a receiving task. */
    HCCL_SEND_RECV_RESERVED     /* Reserved field */
} HcclSendRecvType;