---
title: HcommThreadNotifyRecordOnThread
description: "| 产品 | 是否支持 |"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/programug/commopdev/hcclopdevapi_07_0082.html
sourcePath: /source/zh/canncommercial/900/programug/commopdev/hcclopdevapi_07_0082.html
indexId: 142dd3220a4b5e5cdb604e24bd1f2071d163109f7680b4a07b13b7d0943f461d75
---
# HcommThreadNotifyRecordOnThread

#### 产品支持情况

| 产品 | 是否支持 |
| --- | --- |
| Atlas 350 加速卡 | √ |
| Atlas A3 训练系列产品 / Atlas A3 推理系列产品 | √ |
| Atlas A2 训练系列产品 / Atlas A2 推理系列产品 | √ |
| Atlas 200I/500 A2 推理产品 | ☓ |
| Atlas 推理系列产品 | ☓ |
| Atlas 训练系列产品 | ☓ |


针对 Atlas A2 训练系列产品 / Atlas A2 推理系列产品 ，仅支持Atlas 800T A2 训练服务器、Atlas 900 A2 PoD 集群基础单元、Atlas 200T A2 Box16 异构子框。


#### 功能说明

向其他Thread发送同步信号，主要用于多Thread之间的同步等待场景。


#### 函数原型

```
int32_t HcommThreadNotifyRecordOnThread(ThreadHandle thread, ThreadHandle dstThread, uint32_t dstNotifyIdx)
```


#### 参数说明

| 参数名 | 输入/输出 | 描述 |
| --- | --- | --- |
| thread | 输入 | 通信线程句柄，为通过HcclThreadAcquire接口获取到的threads。 ThreadHandle类型的定义请参见ThreadHandle。 |
| dstThread | 输入 | 目标通信线程句柄，为通过HcclThreadAcquire接口获取到的threads。 ThreadHandle类型的定义请参见ThreadHandle。 |
| dstNotifyIdx | 输入 | 目标Notify索引。 取值范围为：[0, HcclThreadAcquire接口传入的notifyNumPerThread参数的值)。 |


#### 返回值

int32_t：接口成功返回0，其他失败。


#### 约束说明

该接口需要配合HcommThreadNotifyWaitOnThread使用。

在 Atlas 350 加速卡 上，仅支持 AICPU_TS 模式下、在 Device 侧调用该接口。


#### 调用示例

```
HcclComm comm;
CommEngine engine = COMM_ENGINE_CPU_TS;
aclrtStream streams[2];
ThreadHandle threads[2];
// 申请2条流，每条流2个Notify
aclrtCreateStream(&streams[0]);
aclrtCreateStream(&streams[1]);
HcclResult result = HcclThreadAcquireWithStream(comm, engine, streams[0], 2, &threads[0]);
result = HcclThreadAcquireWithStream(comm, engine, streams[1], 2, &threads[1]);
uint32_t notifyIdx = 0;
// 发送同步信号
HcommThreadNotifyRecordOnThread(threads[0], threads[1], notifyIdx);
uint32_t timeout = 1;
// 等待同步信号
HcommThreadNotifyWaitOnThread(threads[1], notifyIdx, timeout);
```

在 Atlas 350 加速卡 上，该函数需要编译到 Device 侧使用：

```
HcclComm comm;
CommEngine engine = COMM_ENGINE_AICPU_TS;
ThreadHandle threads[2];
uint32_t notifyNumPerThread = 2;
HcclThreadAcquire(comm, engine, 1, notifyNumPerThread, &threads[0]);
HcclThreadAcquire(comm, engine, 1, notifyNumPerThread, &threads[1]);
// 其余资源申请
// 拷贝参数并 Launch Kernel
// Device 侧算法编排
uint32_t notifyIdx = 0;
// 发送同步信号
HcommThreadNotifyRecordOnThread(threads[0], threads[1], notifyIdx);
uint32_t timeout = 1;
// 等待同步信号
HcommThreadNotifyWaitOnThread(threads[1], notifyIdx, timeout);
```
