Function: create_context
|
C Prototype |
aclError aclrtCreateContext(aclrtContext *context, int32_t deviceId) |
|---|---|
|
Python Function |
context, ret = acl.rt.create_context(device_id) |
|
Function Usage |
Explicitly creates a context in the calling process or thread. For the Atlas 200/300/500 Inference Product, the context contains two streams: one default stream and one stream for internal synchronization. For the Atlas Training Series Product, the context contains one default stream.
NOTE:
If acl.rt.set_device is not called in the application, when acl.rt.create_context is called for the first time, the system binds a default stream to the device based on the device ID passed by the API (one device is bound to only one default stream). Therefore, when acl.rt.create_context is called for the first time, the number of occupied streams is calculated as follows: Number of occupied streams = Number of default streams bound to the device + Number of streams contained in the context. |
|
Input Description |
device_id: int, ID of the device for which the context is to be created. |
|
Return Value |
context: int, pointer address of the created context. ret: int, error code.
|
|
Restrictions |
The following application scenarios are supported:
|
|
Reference |
For details about the API call sequence and example, see Runtime Resource Allocation and Deallocation. |