Function: stream_wait_event

Applicability

Product

Supported (√/x)

Atlas A3 training products / Atlas A3 inference products

Atlas A2 training products / Atlas A2 inference products

Atlas training products

Atlas inference products

Atlas 200I/500 A2 inference products

Function Usage

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)
    

Parameter Description

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 Description

Return Value

Description

ret

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

Restrictions