Function: synchronize_stream_with_timeout
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
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
1aclError aclrtSynchronizeStreamWithTimeout(aclrtStream stream, int32_t timeout)
- Python Function
1ret = acl.rt.synchronize_stream_with_timeout(stream, timeout)
Parameter Description
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 Description
Return Value |
Description |
|---|---|
ret |
Int, error code: 0 on success; else, failure. |
Parent topic: Streams Management