Function: synchronize_stream_with_timeout

Description

Blocks app running until all tasks in the specified stream are complete. This API is enhanced based on acl.rt.synchronize_stream and allows you to set the timeout interval for your app.

Prototype

  • C Prototype
    1
    aclError aclrtSynchronizeStreamWithTimeout(aclrtStream stream, int32_t timeout)
    
  • Python Function
    1
    ret = acl.rt.synchronize_stream_with_timeout(stream, timeout)
    

Parameters

Parameter

Description

stream

Int, pointer address of the stream object that needs to complete all tasks.

timeout

Int, API timeout interval. The options are as follows:

Return Value

Return Value

Description

ret

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