Function: get_model_id
Applicability
Product |
Supported |
|---|---|
Atlas 350 Accelerator Card |
√ |
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Description
Obtains the ID of the model where a specified operator is located.
You are advised to create a thread and call this API in the new thread. Otherwise, this API call will block the main thread.
Prototype
- C Prototype
1size_t aclprofGetModelId(const void *opInfo, size_t opInfoLen, uint32_t index)
- Python Function
1model_id = acl.prof.get_model_id(op_info, op_info_len, index)
Parameters
Parameter |
Description |
|---|---|
op_info |
Int, specified memory address. |
op_info_len |
Int, length of the operator information. |
index |
Int, operator index. The value range is [0, Operator count – 1]. Call acl.prof.get_op_num to obtain the operator count. |
Return Value
Return Value |
Description |
|---|---|
model_id |
Int, model ID. |
Parent topic: Subscribing to Operator Information