Function: stream_wait_event

Applicability

Product

Supported

Atlas 350 Accelerator Card

Atlas A3 training product / Atlas A3 inference product

Atlas A2 training product / Atlas A2 inference product

Atlas training product

Atlas inference product

Atlas 200I/500 A2 inference product

Description

Blocks the running of a specified stream or multiple streams until the specified event is complete. This API is asynchronous.

All subsequent tasks submitted to the stream can be executed only after all tasks captured by the event are complete. For more details, see acl.rt.record_event.

Prototype

  • C Prototype
    1
    aclError aclrtStreamWaitEvent(aclrtStream stream, aclrtEvent event)
    
  • Python Function
    1
    ret = acl.rt.stream_wait_event(stream, event)
    

Parameters

Parameter

Description

stream

Int, pointer address of the stream that needs to wait for the event to complete. Pass 0 if the default stream is used.

event

Int, pointer address of the event to be waited for.

Return Value

Return Value

Description

ret

Int, error code. 0 on success; else, failure.

Restrictions