aclrtResetEvent
函数功能
复位一个Event。用户需确保等待Stream中的任务都完成后,再复位Event,异步接口。
约束说明
在复位Event时,涉及重置Event的状态,Event的状态是在调用aclrtRecordEvent接口时记录,因此在调用aclrtResetEvent接口前,需要先调用aclrtRecordEvent接口。
接口调用顺序:aclrtCreateEvent-->aclrtRecordEvent-->aclrtResetEvent-->aclrtSynchronizeStream
函数原型
aclError aclrtResetEvent(aclrtEvent event, aclrtStream stream)
参数说明
参数名 |
输入/输出 |
说明 |
---|---|---|
event |
输入 |
待复位的Event。 |
stream |
输入 |
指定Event所在的Stream。 |
返回值说明
返回0表示成功,返回其它值表示失败。
父主题: 同步等待