Function: get_output_name_by_index
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
Obtains the output operator name, operator output edge index, top name, or output name of a model output based on the model description.
Prototype
- C Prototype
1const char *aclmdlGetOutputNameByIndex(const aclmdlDesc *modelDesc, size_t index)
- Python Function
1output_name = acl.mdl.get_output_name_by_index(model_desc, index)
Parameter Description
Parameter |
Description |
|---|---|
model_desc |
Int, pointer address of the data of the aclmdlDesc type. Call acl.mdl.create_desc to create data of the aclmdlDesc type in advance. |
index |
Int, sequence number of the input to obtain, indexed starting at 0 |
Return Value Description
Parent topic: aclmdlDesc