Function: destroy_stream_force
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
Destroys a stream created by the acl.rt.create_stream or acl.rt.create_stream_with_config call. If an unfinished task exists in the stream, the stream is forcibly destroyed without waiting for the task to complete.
Prototype
- C Prototype
1aclError aclrtDestroyStreamForce(aclrtStream stream)
- Python Function
1ret = acl.rt.destroy_stream_force(stream)
Parameter Description
Parameter |
Description |
|---|---|
stream |
Int, pointer address of the stream to be destroyed. |
Return Value Description
Return Value |
Description |
|---|---|
ret |
Int, error code: 0 on success; else, failure. |
Restrictions
When calling this API to destroy a specified stream, ensure that the stream is in the current context.
Parent topic: Streams Management