aclrtDestroyStream

Applicable Products

Product

Supported

Ascend 950PR / Ascend 950DT

Atlas A3 training products / Atlas A3 inference products

Atlas A2 training products / Atlas A2 inference products

Atlas 200I/500 A2 inference products

Atlas inference products

Atlas training products

Function

Destroys a stream created by the aclrtCreateStream, aclrtCreateStreamWithConfig, or aclrtCreateStreamV2 call. If there are unfinished tasks on the stream, the stream is destroyed after the tasks are complete.

Prototype

1
aclError aclrtDestroyStream(aclrtStream stream)

Parameters

Parameter

Input/Output

Description

stream

Input

Stream to destroy. For details about the type definition, see aclrtStream.

Returns

0 on success; otherwise, failure. For details, see aclError.

Restrictions

  • Before calling aclrtDestroyStream to destroy a specified stream, call aclrtSynchronizeStream to ensure that all tasks in the stream are complete.
  • When calling aclrtDestroyStream to destroy a specified stream, ensure that the stream is in the current context.
  • The stream passed to the aclrtDestroyStream call must not be in use by other API calls.

API Call Example

For the API call example, see Cross-Device Data Exchange.