函数:get_input_name_by_index
| C函数原型 | const char *aclmdlGetInputNameByIndex(const aclmdlDesc *modelDesc, size_t index) | 
|---|---|
| Python函数 | input_name = acl.mdl.get_input_name_by_index(model_desc, index) | 
| 函数功能 | 获取模型中指定输入的输入名称。同步接口。 | 
| 输入说明 | model_desc:int,aclmdlDesc类型数据的指针。 index:int,指定获取第几个输入的大小,index值从0开始。 | 
| 返回值说明 | input_name:str,返回指定输入的输入名称。 | 
| 约束说明 | 无 | 
| 注意事项 | 无 | 
父主题: aclmdlDesc